mu/html/archive/2.vm/f2c-1.mu
2019-07-27 17:47:59 -07:00

9 lines
180 B
Forth
Generated

# c = (f-32) * 5/9
def fahrenheit-to-celsius f:number -> c:number [
local-scope
load-ingredients
tmp:number <- subtract f, 32
tmp <- multiply tmp, 5
c <- divide tmp, 9
]