Files
luaj/examples/jse/SampleJseMain.java

19 lines
353 B
Java
Raw Normal View History

import org.luaj.vm2.LuaValue;
import org.luaj.vm2.lib.JsePlatform;
public class SampleJseMain {
public static void main(String[] args) throws Exception {
String script = "examples/lua/hello.lua";
// create an environment to run in
LuaValue _G = JsePlatform.standardGlobals();
_G.get("dofile").call( LuaValue.valueOf(script) );
}
}