[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Easier function declaration in tables for 5.2?
- From: RJ Russell <russellsprouts2@...>
- Date: Sat, 30 Jan 2010 16:48:23 -0800
Is it possible that 5.2 could allow syntax like:
table={
function hello(self)
doStuff(self)
end,
hi=6
}
or even:
table={
function :hello()
doStuff(self)
end,
hi=6
}
That would be very useful.