lua-users home
lua-l archive

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


On Fri, Mar 30, 2012 at 5:50 PM, Petite Abeille
<petite.abeille@gmail.com> wrote:
> $ luac -o TestC.luac TestA.lua TestB.lua TestC.lua
>
>
> $ lua TestC.luac
> TestA
> lua: TestB.lua:3: attempt to call global 'module' (a nil value)
> stack traceback:
>        TestB.lua:3: in main chunk
>        (luac): in main chunk
>        [C]: in ?
>
>
> Thoughts?

I suspect the problem is in your implementation of module (which is
not part of Lua 5.2 so we can't test it :P).

-- 
- Patrick Donnelly