redis_study/deps/lua/test/echo.lua

6 lines
80 B
Lua
Raw Normal View History

2020-09-05 04:01:22 +00:00
-- echo command line arguments
for i=0,table.getn(arg) do
print(i,arg[i])
end