0 constant for logical false
a? = False
Local a?, i%
OpenW # 1
i% = 20
If i%
a? = True
Print "i% is not equal to 0; a?="; a?
EndIf
i% = 0
If !i%
a? = False
Print "i% is equal to 0; a?="; a?
EndIf
Prints:
i% is not equal to 0; a?=True
i% is equal to 0; a?=False
{Created by Sjouke Hamstra; Last updated: 05/10/2014 by James Gaite}