Action
Terminate program execution.
Syntax
END
Remarks
STOP can also be used to terminate a program.
When an END or STOP
statement is encountered, a never ending loop is generated.
See
also
STOP
Example
PRINT
" Hello" 'print this
END 'end program execution
|