mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/pow.in
|
|
|
|
# The exponent must be u8, u16, or u32
|
|
*/
|
|
|
|
function main(a: u64, b: u64, c: u64) -> bool {
|
|
return a ** b == c;
|
|
}
|