Lua Trivia |
|
given a.b defined in terms of:
what would you expect the following to print?
|
|
a:b(c) causes a Lua function to be called. What arguments are passed to that function? |
a:b(c) causes a Lua function to be called. What arguments are passed to that function?
a = 2 b = 3 c = a-- * b++ print(a, b, c)