END

Terminates the DataBasic program and exit the debugger.

Syntax

END and press RETURN

END and press LINE FEED

Operation

If you press RETURN the program terminates and control returns to TCL.

If you press LINE FEED after you type END and the program is being executed from a Proc, the program terminates and control returns to the next statement in the Proc.

If you press LINE FEED after you type END and the program is being executed from a PERFORM statement in a DataBasic program, the program terminates and control returns to the DataBasic program at the statement following the PERFORM statement.

Examples

*B$=5
*G
*B15
*END RETURN

Terminates program and returns to TCL.

*END LINE FEED

Terminates program and returns control to Proc that called it.