home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 25 / FreelogHS25.iso / Dessin / ArtOfIllusion2.2.1 / ArtOfIllusion.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.