Skip to content

Instantly share code, notes, and snippets.

@kennyt
Created October 27, 2012 09:35
Show Gist options
  • Save kennyt/3963766 to your computer and use it in GitHub Desktop.
Save kennyt/3963766 to your computer and use it in GitHub Desktop.
01_temperature
def ftoc (fahrenheit)
(fahrenheit - 32) * 5/9.to_f
end
def ctof (celsius)
celsius * 9/5.to_f + 32
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment