mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
16 lines
262 B
Plaintext
16 lines
262 B
Plaintext
// namespace: Compile
|
|
// expectation: Pass
|
|
// inputs:
|
|
// - u16_f.in: |
|
|
// [main]
|
|
// a: u16 = 2;
|
|
// b: u16 = 2;
|
|
// c: u16 = 4;
|
|
|
|
// [registers]
|
|
// r0: bool = true;
|
|
|
|
function main(a: u16, b: u16, c: u16) -> bool {
|
|
return a ** b == c;
|
|
}
|