xref: /redis-3.2.3/deps/lua/test/printf.lua (revision 21d3294c)
1-- an implementation of printf
2
3function printf(...)
4 io.write(string.format(...))
5end
6
7printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())
8