leo/tests/compiler/integers/u32/pow.leo

4 lines
74 B
Plaintext
Raw Normal View History

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