6 lines
47 B
Ruby
6 lines
47 B
Ruby
|
|
class Numeric
|
||
|
|
def **(m)
|
||
|
|
pow(m)
|
||
|
|
end
|
||
|
|
end
|