End


Statement End


End terminates execution of a script.


Syntax End


Remarks

End causes the termination of a script immediately.


See Also:

Stop


Example Script


NUMBER i


FOR i = 4 to 10

IF i == 8 THEN END

PRINT i

NEXT


Script Output


4

5

6

7