summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb
blob: dfc6ba87cc9b61828d4b54f8f82b5660c91c7d38 (plain)
1
2
3
4
5
module Integral
  def div(other)
    self.divmod(other)[0]
  end
end