mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/eq.in
|
|
- inputs/ne.in
|
|
*/
|
|
|
|
function main(a: u32, b: u32, c: bool) -> bool{
|
|
return (a != b) == c;
|
|
}
|