Class: Rational

Inherits:
Object
  • Object
show all
Defined in:
lib/annlat/Sundries.rb

Instance Method Summary collapse

Instance Method Details

#prettifyObject



20
21
22
23
24
25
26
# File 'lib/annlat/Sundries.rb', line 20

def prettify
  if self.denominator==1
    self.numerator 
  else
    self
  end
end