about summary refs log tree commit diff stats
path: root/config.mk
Commit message (Expand)AuthorAgeFilesLines
* new stuff, fixed several issuesAnselm R. Garbe2006-07-121-1/+1
* added grid mode on Mod1Mask gAnselm R. Garbe2006-07-121-1/+1
* added new stuffAnselm R. Garbe2006-07-101-3/+1
* initial importAnselm R. Garbe2006-07-101-0/+29
4 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
]