module Terryology

Constants

VERSION

Public Instance Methods

*(rhs) click to toggle source
Calls superclass method
# File lib/terryology.rb, line 4
def *(rhs)
  if self == rhs && self == 1
    2
  else
    super
  end
end