projects
/
redis.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
added redis.sha1hex(string) as lua scripting function.
[redis.git]
/
deps
/
lua
/
test
/
printf.lua
Commit
Line
Data
21d3294c
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())