mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-20 08:41:34 +03:00
14 lines
203 B
Plaintext
14 lines
203 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/tern.in
|
|
- inputs/tern_rev.in
|
|
*/
|
|
|
|
function main(s: bool, a: i32, b: i32, c: i32) -> bool {
|
|
let r: i32 = s ? a : b;
|
|
|
|
return r == c;
|
|
}
|