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