Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/lua-5.1.2/test/cf.lua')
-rw-r--r--src/engine/lua-5.1.2/test/cf.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/engine/lua-5.1.2/test/cf.lua b/src/engine/lua-5.1.2/test/cf.lua
new file mode 100644
index 0000000..8cda54b
--- /dev/null
+++ b/src/engine/lua-5.1.2/test/cf.lua
@@ -0,0 +1,16 @@
+-- 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