From 317c0644ccf108aa23ef3fd8358bd66c2840bfc0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:40:54 +0200 Subject: Adding upstream version 5:7.2.4. Signed-off-by: Daniel Baumann --- deps/lua/test/cf.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 deps/lua/test/cf.lua (limited to 'deps/lua/test/cf.lua') diff --git a/deps/lua/test/cf.lua b/deps/lua/test/cf.lua new file mode 100644 index 0000000..8cda54b --- /dev/null +++ b/deps/lua/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 -- cgit v1.2.3