Tk::exit - End the application
Contents
Caveats
Using "exit" from a forked process will terminate both the child process and the parent process. As
"Tk::exit" is imported by default one should use "CORE::exit" in the forked process instead.
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".
Keywords
exit, process
perl v5.40.1 2025-04-13 exit(3pm)
Name
Tk::exit - End the application
Synopsis
use Tk qw(exit);
...
B<exit>?(I<returnCode>)?;
