mirror of
https://github.com/fluencelabs/redis
synced 2025-06-24 06:21:32 +00:00
deps
hiredis
jemalloc
linenoise
lua
doc
etc
src
test
README
bisect.lua
cf.lua
echo.lua
env.lua
factorial.lua
fib.lua
fibfor.lua
globals.lua
hello.lua
life.lua
luac.lua
printf.lua
readonly.lua
sieve.lua
sort.lua
table.lua
trace-calls.lua
trace-globals.lua
xd.lua
COPYRIGHT
HISTORY
INSTALL
Makefile
README
Makefile
README.md
update-jemalloc.sh
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README.md
TLS.md
redis.conf
runtest
runtest-cluster
runtest-moduleapi
runtest-sentinel
sentinel.conf
17 lines
293 B
Lua
17 lines
293 B
Lua
![]() |
-- temperature conversion table (celsius to farenheit)
|
||
|
|
||
|
for c0=-20,50-1,10 do
|
||
|
io.write("C ")
|
||
|
for c=c0,c0+10-1 do
|
||
|
io.write(string.format("%3.0f ",c))
|
||
|
end
|
||
|
io.write("\n")
|
||
|
|
||
|
io.write("F ")
|
||
|
for c=c0,c0+10-1 do
|
||
|
f=(9/5)*c+32
|
||
|
io.write(string.format("%3.0f ",f))
|
||
|
end
|
||
|
io.write("\n\n")
|
||
|
end
|