11 lines
143 B
Python
11 lines
143 B
Python
|
"""
|
||
|
I am a plain old module with no interesting dependencies or import machinery
|
||
|
fiddlery.
|
||
|
"""
|
||
|
|
||
|
import math
|
||
|
|
||
|
|
||
|
def pow(x, y):
|
||
|
return x ** y
|