futriix/deps/lua/test/echo.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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