lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> From steve@inquisit.com Thu Jun  4 15:26:40 1998
> 
> > A binding between Lua and Java. This binding is implemented as
> > a Java package and gives Java code the ability to access all
> > Lua features. Includes javadoc documentation comments..
> 
> Carlos,
> 
> Is it also possible to call Java from Lua?

Hi Steve.

Yes, it is. This binding works just like the "official" binding
with C. That is, you have the entire API implemented in Java. In
particular, you can push a "Java function" to Lua and call it from
there (this "Java function" is actually an object with an special
method `foo' that will be called from Lua.)

-- Cassino