regExitAfter
regExitAfter(s_name) =>t/nil
Description
Registers the action to be taken after the exit function has performed its bookkeeping tasks but before it returns control to the operating system.
Arguments
|
Name of the function that is to be added to the head of the list of functions to be performed after the |
Value Returned
Examples
procedure( foo( @rest args)
println( "After proc being executed"))
regExitAfter( 'foo)
=> t
Related Topics
Return to top