]> git.saurik.com Git - redis.git/blob - deps/lua/test/printf.lua
call the Lua hook with minor frequency. It is already enough to call it every 100000...
[redis.git] / deps / lua / test / printf.lua
1 -- an implementation of printf
2
3 function printf(...)
4 io.write(string.format(...))
5 end
6
7 printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())