/** Return an "empty" BeanShell object context which can be used to hold data items. e.g.

    myStuff = object();
    myStuff.foo = 42;
    myStuff.bar = "blah";
	
@method This object() */ bsh.help.object = "usage: object()"; object() { return this; }