False Variable

Purpose

0 constant for logical false

Syntax

a? = False

Example

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

See Also

True

{Created by Sjouke Hamstra; Last updated: 05/10/2014 by James Gaite}