Files
glest-source/mk/linux/mojosetup/lua/test/echo.lua
2010-04-25 03:01:17 +00:00

6 lines
80 B
Lua

-- echo command line arguments
for i=0,table.getn(arg) do
print(i,arg[i])
end