leo/tests/compiler/input_files/program_input_constants/main_multiple.leo

10 lines
171 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/main_multiple.in
2021-05-05 17:35:34 +03:00
*/
function main(const a: bool, const b: bool, y: bool) -> bool {
2021-07-01 23:40:29 +03:00
return (a != b) == y;
2021-05-05 17:35:34 +03:00
}