]> git.saurik.com Git - redis.git/blob - deps/lua/test/echo.lua
Macros ULONG_ONEZERO / ULONG_ZEROONE were inverted in #ifdef to test 32/64 bit arch.
[redis.git] / deps / lua / test / echo.lua
1 -- echo command line arguments
2
3 for i=0,table.getn(arg) do
4 print(i,arg[i])
5 end