leo/compiler/tests/integers/u16/pow.leo
2020-08-16 19:14:26 -07:00

3 lines
74 B
Plaintext

function main(a: u16, b: u16, c: u16) {
console.assert(a ** b == c);
}