Files
mruby-mruby/mrblib/float.rb
T
2019-01-03 11:34:35 +09:00

10 lines
207 B
Ruby

##
# Float
#
# ISO 15.2.9
class Float
# mruby special - since mruby integers may be upgraded to floats,
# floats should be compatible to integers.
include Integral
end if Object.const_defined?(:Float)