RosettaCodeData/Task/Temperature-conversion/LiveCode/temperature-conversion-1.livecode

7 lines
139 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function convertDegrees k
put k/5 * 9 into r
put k - 273.15 into c
put r - 459.67 into f
return k,r,c,f
end convertDegrees