mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
15 lines
261 B
Plaintext
15 lines
261 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 test.aleo {
|
|
transition main(a: bool, b: bool) -> bool {
|
|
return a ? b : false;
|
|
}}
|