Syntax of the graphics commands Graphics commands
166
T5023/5023+ - Programming Guide
BEGIN EIGHT DOT
PRINTLF("Parameter S =",S)
PRINT(char(27),"*",char(S))
PRINT(char(100,0))
SET N=0
REPEAT
SET N=N+1
PRINT(char(170),char(85))
UNTIL N=50
PRINTLF( )
END EIGHT DOT
BEGIN TWENTY-FOUR
PRINTLF("Parameter S =",S)
PRINT(char(27),"*",char(S))
PRINT(char(100,0))
SET N=0
REPEAT
SET N=N+1
PRINT(char(170),char(85))
UNTIL N=150
PRINTLF( )
END TWENTY-FOUR