leo/tests/compiler/input_files/program_input/main_group.leo
2021-04-19 18:08:14 -07:00

6 lines
192 B
Plaintext

function main(a: group, b: group, c: group) {
// Change to assert when == is implemented for group.
console.log("a: {}", a);
console.log("b: {}", b);
console.log("c: {}", c);
}