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

6 lines
47 B
Ruby
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
class Numeric
def **(m)
pow(m)
end
end