mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
16 lines
175 B
Ruby
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
|