Class: Fixnum

Inherits:
Object show all
Defined in:
lib/chitin/commands/builtins.rb

Overview

Fixnum math is now floating-point math

Instance Method Summary collapse

Instance Method Details

#/(other) ⇒ Object



155
156
157
# File 'lib/chitin/commands/builtins.rb', line 155

def /(other)
  self.to_f / other.to_f
end

#old_divObject



153
# File 'lib/chitin/commands/builtins.rb', line 153

alias_method :old_div, :/