lua-users home
lua-l archive

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


I agree about your 'projection' bit; even if I do hate the operator
The injection not so much;
I usually just return a table at the end of my modules:


-- My module

local function foo() end

local function bar() end

return {
    init_foo = foo ;
    bar = bar
}