mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-21 17:21:34 +03:00
14 lines
223 B
Plaintext
14 lines
223 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/false_false.in
|
|
- inputs/false_true.in
|
|
- inputs/true_false.in
|
|
- inputs/true_true.in
|
|
*/
|
|
|
|
@program
|
|
function main(a: bool, b: bool) -> bool {
|
|
return a == b;
|
|
} |