mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
18 lines
246 B
Plaintext
18 lines
246 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- ne.in: |
|
|
[main]
|
|
a: u128 = 10;
|
|
b: u128 = 20;
|
|
c: bool = true;
|
|
|
|
[registers]
|
|
r0: bool = true;
|
|
*/
|
|
|
|
function main(a: u128, b: u128, c: bool) -> bool {
|
|
return a != b == c;
|
|
}
|