RosettaCodeData/Task/Exponentiation-operator/Ruby/exponentiation-operator-2.rb
2023-07-01 13:44:08 -04:00

5 lines
47 B
Ruby

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