home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / multimedia / ppsee / PPSeeSetup.exe / lib / bsh-commands-2.0b4.jar / bsh / commands / exit.bsh < prev    next >
Text File  |  2005-05-23  |  255b  |  13 lines

  1. /**
  2.     Conditionally exit the virtual machine.
  3.     Call System.exit(0) unless bsh.system.shutdownOnExit == false.
  4. */
  5.  
  6. bsh.help.exit = "usage: exit()";
  7.  
  8. exit() {
  9.     // shutdown Java VM unless flagged
  10.     if ( bsh.system.shutdownOnExit != false )
  11.         System.exit(0);
  12. }
  13.