diff options
Diffstat (limited to 'lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/cf.lua')
-rw-r--r-- | lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/cf.lua | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/cf.lua b/lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/cf.lua deleted file mode 100644 index 8cda54b..0000000 --- a/lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/cf.lua +++ /dev/null @@ -1,16 +0,0 @@ --- 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 |