core :: Int :: **
self
e
assert 2 ** 3 == 8
# Returns the `self` raised to the power of `e`. # # assert 2 ** 3 == 8 fun **(e: Int): Int do return self.to_f.pow(e.to_f).to_i end