|
Thanks! (I'm lua newbie really) On 3/11/2011 2:54 PM, Reuben Thomas wrote:
On 11 March 2011 22:52, Dimiter "malkia" Stanev<malkia@gmail.com> wrote:Lua does not allow forward function declarations, and I cannot recompile just a function (or maybe there is a trick).Um, yes it does:function f(x) return g(x) end function g(x) print (x) end f(30)30 Or am I missing something?