-
The script is TableIntGet.lua, a rather trivial one:
```
local t = {};
-- C-Lua schneller
for i = 1,10000,1 do
t[i] = i;
end;
-- interessant! C-Lua ziemlich lahm
for i = 1,100,1 do
table.rem…
-
Hi,
Please let me know how to resolve this error. I am new to Lua.
Thank you.
Regards,
Suresh
-
In Lua 5.2, this code:
``` lua
function showTable(t)
for i, j in pairs(t) do
print(j)
end
end
tb = {}
tb["id"] = 3
print("Before:")
showTable(tb)
tb["id"] = nil
print("After:")
sh…
-
https://groups.google.com/forum/#!topic/moonsharp/tSqnKSJn7_c
-
Link to google docs file is dead:
The standard library may at points be wildly different - Check here for an overview of the standard library status.
-