about summary refs log blame commit diff stats
path: root/html/expected-result.png
blob: 7f35fdecde6376a64bc94f3edfda7856e5494070 (plain) (tree)
blob is binary.
> 5 6 7 8
# 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
]