RosettaCodeData/Task/Exponentiation-operator/Ruby/exponentiation-operator-2.rb

6 lines
47 B
Ruby

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