i'm just wondering... what's the difference between
function a(param1, param2)and
a = function(param1,param2)???
Posted 17 January 2014 - 02:17 PM
function a(param1, param2)and
a = function(param1,param2)???
Posted 17 January 2014 - 02:21 PM
Posted 17 January 2014 - 02:26 PM
local table = { a = function(var) print(var) end,}
table.a("Hello World") --> Hello World
Posted 17 January 2014 - 02:40 PM
Edited by MR_nesquick, 17 January 2014 - 02:40 PM.
Posted 17 January 2014 - 08:17 PM
0 members, 2 guests, 0 anonymous users