Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
END command (DataBasic debugger) (m618706+end.htm)
Terminates the DataBasic program and exit the debugger.
END and press RETURN
END and press LINE FEED
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.
*
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.