None. |
TRUE is a keyword to denote a positive result in a conditional statement. Often times, TRUE is implied and doesn't need to be directly referenced. TRUE can also be used as a RETURN value from aFUNCTION. See the example.
See also: False, If, Select, While, Repeat. |
; TRUE example
; Assign test a random number of 0 or 1 test= Rnd(0,1) ; TRUE is implied; This statement REALLY means: if test=1 is TRUE then proceed If test=1 Then Print "Test was valued at 1" End If ; Let's set test to be true test=True ; Pointlessly test it If test=True Then Print "Test is true" End If |