aboutsummaryrefslogtreecommitdiff
path: root/libs/lua/test/cf.lua
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-05-16 10:58:21 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-06-15 15:33:48 (GMT)
commitd4c5d99bcbf614e31e4f724319437e82d7f2a208 (patch)
tree84028219313ee62cc4bcccec2e3e2604e56c9dac /libs/lua/test/cf.lua
parentdb243c1d343781a1466e1b863e174427cd37e37f (diff)
downloadfluxbox_pavel-d4c5d99bcbf614e31e4f724319437e82d7f2a208.zip
fluxbox_pavel-d4c5d99bcbf614e31e4f724319437e82d7f2a208.tar.bz2
Add lua as an internal library in libs/lua
Diffstat (limited to 'libs/lua/test/cf.lua')
-rw-r--r--libs/lua/test/cf.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/libs/lua/test/cf.lua b/libs/lua/test/cf.lua
new file mode 100644
index 0000000..8cda54b
--- /dev/null
+++ b/libs/lua/test/cf.lua
@@ -0,0 +1,16 @@
1-- temperature conversion table (celsius to farenheit)
2
3for c0=-20,50-1,10 do
4 io.write("C ")
5 for c=c0,c0+10-1 do
6 io.write(string.format("%3.0f ",c))
7 end
8 io.write("\n")
9
10 io.write("F ")
11 for c=c0,c0+10-1 do
12 f=(9/5)*c+32
13 io.write(string.format("%3.0f ",f))
14 end
15 io.write("\n\n")
16end