Files
mruby-mruby/mrbgems/mruby-rational/mrblib/rational.rb
T
2021-03-24 19:49:20 +09:00

16 lines
175 B
Ruby

class Rational < Numeric
def inspect
"(#{to_s})"
end
def to_s
"#{numerator}/#{denominator}"
end
end
class Numeric
def to_r
Rational(self, 1)
end
end