1
0
mirror of https://github.com/fluencelabs/redis synced 2025-06-10 15:51:21 +00:00
Files
redis/deps/lua/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