Hi, At Fri, 21 Mar 2003 03:18:59 +0900, Thomas Jollans wrote: > while learning ruby i wanted to program a simple fahrenheit to celsius > converter. for that i need 9/5 to be 1,8 (and not 1). how do i do that > in ruby? require 'rational' Rational(9, 5) -- Nobu Nakada