summaryrefslogtreecommitdiffhomepage
path: root/mrblib/float.rb
blob: 2b86dc1e58fe579c35b42ebd7478791991fba198 (plain)
1
2
3
4
5
6
7
8
9
##
# 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 class_defined?("Float")