leo/compiler/tests/input_files/program_input/main_multiple.leo
2020-07-31 20:59:50 -07:00

4 lines
86 B
Plaintext

function main(a: bool, b: bool) {
assert_eq!(a, true);
assert_eq!(b, false);
}