** raises a base value to a power.
**
It supports int, float, and bigint.
int
float
bigint
let i = 2 ** 3 let f = 2. ** 3. open! BigInt let b = 2n ** 3n