sj4/trunk/lib/lua/test/echo.lua

5 lines
80 B
Lua
Raw Normal View History

2008-01-11 12:02:44 +00:00
-- echo command line arguments
for i=0,table.getn(arg) do
print(i,arg[i])
end