RosettaCodeData/Task/Exponentiation-operator/Ruby/exponentiation-operator-2.rb
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

5 lines
47 B
Ruby

class Numeric
def **(m)
pow(m)
end
end