leo/compiler/tests/input_files/program_input/main_multiple.leo

4 lines
86 B
Plaintext
Raw Normal View History

2020-07-31 00:38:31 +03:00
function main(a: bool, b: bool) {
assert_eq!(a, true);
assert_eq!(b, false);
}