condexpr definition
An expression that returns a numeric result.
If the result is zero, the conditional is False.
If the result is non-zero, the conditional is True.
0 'false
-1 'true
X > 20 'true if X is greater than 20
S$ = "hello" 'true if S$ equals "hello"