leo/compiler/tests/input_files/program_input/main_multiple.leo
2020-08-16 19:14:26 -07:00

4 lines
98 B
Plaintext

function main(a: bool, b: bool) {
console.assert(a == true);
console.assert(b == false);
}