mirror of
https://github.com/valkey-io/valkey.git
synced 2026-05-06 21:39:43 -04:00
6 lines
80 B
Lua
6 lines
80 B
Lua
-- echo command line arguments
|
|
|
|
for i=0,table.getn(arg) do
|
|
print(i,arg[i])
|
|
end
|