leo/compiler/tests/input_files/program_input/main_group.leo

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);
}