ifendif0.txt example

Warning: if you clip this code into your program, look out for possible html code slipping in.

REM IF / ELSE / ENDIF example

IF 1>0
	print "\010\013one is greater than nothing"
ENDIF

IF (1=2) OR (2=3)
	print "\010\013something is wrong in the universe"
ELSE
	print "\010\013things are as they should be"
ENDIF