leo/tests/compiler/integers/u64/pow.leo

4 lines
74 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
function main(a: u64, b: u64, c: u64) -> bool {
return a ** b == c;
}