leo/asg/tests/pass/input_files/program_input/main_multiple.leo

4 lines
98 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main(a: bool, b: bool) {
console.assert(a == true);
console.assert(b == false);
}