Tk::exit (3)
Leading comments
Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) Standard preamble: ========================================================================
NAME
Tk::exit - End the applicationSYNOPSIS
use Tk qw(exit); ... B<exit>?(I<returnCode>)?;
DESCRIPTION
Terminate the process, returning returnCode to the system as the exit status. If returnCode isn't specified then it defaults to 0.If calling "exit" from code invoked via a Tk callback then this Tk version of "exit" cleans up more reliably than using the perl "exit".