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/gt.in
|
|
*/
|
|
|
|
function main(a: i128, b: i128, c: bool) -> bool {
|
|
return a > b == c;
|
|
}
|