7.6

Table Of Contents
show('Some text to display')
%Display the text
crlf()
%Skip to the next line
endfor()
Example with version 7.0
define(&x, integer, inttostr(@(1, 1, 10)))
if(&x = 1)
setstyle(&bluefont)
elseif(&x = 2)
setstyle(&redfont)
else()
setstyle(&default)
endif()
Related topics:
l "If (function)" (page 553)
Repeat... Until (procedure)
Repeat a sequence of commands until a condition is true. It is similar to a for... endfor loop in that you can nest the loops. It is
different from a for... endfor loop in that the loop always executes at least once, and that you tie the number of times the
loop repeats to a Boolean condition. For example you might tie the number of times the loop repeats to the occurrence of a
piece of data in the data stream.
Syntax
repeat
until( expression )
©2010 Objectif Lune Inc - 627 -