mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
6 lines
69 B
Ruby
6 lines
69 B
Ruby
module Integral
|
|
def div(other)
|
|
self.divmod(other)[0]
|
|
end
|
|
end
|