home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / advwebrank / awr.msi / disk1.cab / bsh_1.2b6.jar / bsh / commands / show.bsh < prev    next >
Encoding:
Text File  |  2002-05-24  |  305 b   |  15 lines

  1. /**
  2.     Toggle on or off displaying the results of expressions (off by default).
  3.     When show mode is on bsh will print() the value returned by each expression 
  4.     you type on the command line.
  5. */
  6.  
  7. bsh.help.show = "usage: show()";
  8.  
  9. show() {
  10.     if ( bsh.show == void )
  11.         bsh.show = false;
  12.  
  13.     bsh.show = !bsh.show;
  14. }
  15.