of     1   

Jlobblet
#64362238Thursday, March 15, 2012 10:54 AM GMT

Is it possible to put a function in a table? So, the math functions may be like this: math = { function pi() return 3.1415926535898 end} and so on.
[rfa#hidefromsearch]
#64362582Thursday, March 15, 2012 11:31 AM GMT

[rfa#hidefromsearch]
blackhalodude
#64363084Thursday, March 15, 2012 12:13 PM GMT

lol
BunnyBoy26
#64363382Thursday, March 15, 2012 12:35 PM GMT

yeah it is.
blackhalodude
#64363417Thursday, March 15, 2012 12:39 PM GMT

    Print ("Testing Forum Enchancer")
FinaIize
#64364576Thursday, March 15, 2012 2:34 PM GMT

Its like this:     local math={         ["pi"]=function()             --Stuff here         end,         ["floor"]=function()             --Stuff here         end     }

    of     1