Ruby - Operators and Expressions
Identify the error in this Ruby class that tries to override the
* operator:class Multiplier
def *(other)
@value * other
end
end
m = Multiplier.new
puts m * 3