lua-users home
lua-l archive

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


> > - what is a common way of calling an "AI" routine written in Lua?
>     There are two basic alternatives that we use.
>         - dostring  -> This is the easy way to call a routine that takes
no
> arguments, and returns nothing.

Correct me if I'm wrong, but dostring() returns the return values of the
global code that is run (which usually has no return values).

Josh