View Single Post
03-28-13, 07:00 AM   #5
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
Lua Code:
  1. local function func() end
  2. -- is sugar for:
  3. local func;
  4. func = function() end
  5.  
  6. -- Also note that:
  7. local func = function()
  8.    print(func) -- prints nil
  9. end
  10. local function func()
  11.    print(func) -- funcction: 0xHEX
  12. end
__________________
「貴方は1人じゃないよ」
  Reply With Quote