ifTrue

Help Contents Conditional execution ifTrue
ifElse ifT

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

See also:

Examples:

References:

ifElse ifT