mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 06:16:04 +03:00
6 lines
80 B
Lua
6 lines
80 B
Lua
-- echo command line arguments
|
|
|
|
for i=0,table.getn(arg) do
|
|
print(i,arg[i])
|
|
end
|