Returns 1 if the value a is larger than 0. Returns 0 if a is zero or negative.
bool( a )
a
If a>0, returns 1. Else returns 0.
bool(3)
Returns 1.