f-stack/app/redis-3.2.8/deps/lua/test/printf.lua

8 lines
169 B
Lua
Raw Normal View History

2017-04-21 10:43:26 +00:00
-- an implementation of printf
function printf(...)
io.write(string.format(...))
end
printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())