ifT

Help Contents Conditional execution ifT
ifTrue ifFalse

ifTrue instructionlist
ifT instructionlist


command. Runs its input if the most recent test instruction had a TRUE input. The TEST must have been in the same procedure or a superprocedure.

Example:

to t
	test true
	iftrue [pr true]
end
;t defined
t		;true

Reference:

ifTrue ifFalse