Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 357 Bytes

README.MD

File metadata and controls

15 lines (10 loc) · 357 Bytes

LuaBox Kt

Lua runtime on JVM written in Kotlin. Based on LuaJ.

Usage

val luabox = LuaBox.default()
val result = luabox.load("return 1 + 2", createLuaEnvironment()).call()
println(result.toString())

Because LuaJ is such ancient that I need to rewrite many things to make things work in modern style.

Still in progress, also documents.