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
/
show.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
309b
|
12 lines
/**
Toggle on or off displaying the results of expressions (off by default).
When show mode is on bsh will print() the value returned by each expression
you type on the command line.
*/
bsh.help.show = "usage: show()";
show() {
this.interpreter.setShowResults( !this.interpreter.getShowResults() );
}