1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-16 14:50:01 +00:00
Aquaria/ExternalLibs/lua-5.1.4/test/echo.lua

6 lines
80 B
Lua
Raw Normal View History

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