leo/tests/compiler/integers/u64/pow.leo
2021-05-10 21:11:31 +03:00

4 lines
74 B
Plaintext

function main(a: u64, b: u64, c: u64) -> bool {
return a ** b == c;
}