Statement: end
The end statement simply stops execution of the script.
Example Script |
---|
writeln "So far so good."; end; writeln "We never get here!"; |
Output:-So far so good. |
If the end statement is used in a function or command, then it ends the function or command and the script continues running from the calling point.