mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 16:22:45 +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
|