0

Does anyone know if LuaJava works out of the box with the latest LuaBinaries or just the 5.1.1 binaries? Thanks.

http://www.keplerproject.org/luajava/index.html

Unrealomega
  • 107
  • 2
  • 9

1 Answers1

1

I have no problems using it with Lua 5.1.4:

Output:

C:\luajava>lua -v
Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio

C:\luajava>java -cp "luajava-1.1.jar" org.keplerproject.luajava.Console
API Lua Java - console mode.
> example = 10
> example = example + 20
> print(example)
30

I am using Lua on Windows

Syntax
  • 2,155
  • 2
  • 23
  • 34