mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
13 lines
217 B
Plaintext
13 lines
217 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- input/false_false.in
|
|
- input/false_true.in
|
|
- input/true_false.in
|
|
- input/true_true.in
|
|
*/
|
|
|
|
function main(a: bool, b: bool) -> bool {
|
|
return a ? b : false;
|
|
} |