Home | Back | Contents | Next |
Note: The choice of "bsh" for the root system object name was somewhat unfortunate because it conflicts with the current package name for BeanShell (also bsh). This means that if you wish to work with BeanShell classes explicitly from BeanShell scripts (e.g. bsh.Interpreter) you must first import them, e.g.: import bsh.Interpreter; i=new Interpreter(); |
if ( foobar == void ) // undefined |
a == void; // true a=5; unset("a"); // note the quotes a == void; // true |
getBshPrompt() { return bsh.cwd + " % "; } |
Home | Back | Contents | Next |