resume
resume( [g_result] ) =>g_toplevel
Description
Exits the interactive top-level loop started with the most recently invoked toplevel function and returns its argument to the caller of toplevel. Do not use this function programmatically; use it only as an interactive command.
The resume function itself does not return. It returns value of the toplevel function.
-
To start a top-level interactive loop in SKILL++ mode, type
toplevel( 'ils )
-
To start a top-level interactive loop in SKILL mode, type
toplevel( 'il )
Arguments
|
Optional value to be returned as the result from the previous |
Value Returned
|
Returns the return value of the |
Examples
Following is a transcript of a brief session, including prompts.
> R = toplevel( 'ils )
ILS-<2> resume( 1 )
1
> R
1
Related Topics
Return to top