up vote 7 down vote favorite
5
share [g+] share [fb]

Is there any Lua power user wishing to share a gem of hidden knowledge about this nice language? Any trick that can be useful is welcome, be it for extending C/C++ applications or extending the Lua language.

link|improve this question
Possible duplicate of: stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks – Tom Brito Dec 5 '11 at 16:14
feedback

3 Answers

up vote 5 down vote accepted

Several Lua users shared their gems in this book.

link|improve this answer
feedback

My favourite secret features:

  • newproxy ( true )
  • The secret package.config table
  • The Frontier pattern (%f)
link|improve this answer
feedback

It's not a hidden feature, but some C programmers might think it's weird:

Swap

a = 10
b = 20
a,b = b,a

print(a) --> 20
print(b) --> 10
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.