public void testMeta() throws LuaException
{
LuaState L = LuaStateFactory.newLuaState();
L.openLibs();
L.newTable();
L.newTable();
L.pushString("__index");
L.LdoString("return function()" +
"io.write( 'metatest\\n') io.stdout:flush() " +
"return 'foo' " +