leo/compiler/tests/input_files/program_input_constants/main_group.leo

6 lines
210 B
Plaintext
Raw Normal View History

2021-03-12 13:56:38 +03:00
function main(const a: group, const b: group, const c: group) {
// Change to assert when == is implemented for group.
console.log("a: {}", a);
console.log("b: {}", b);
console.log("c: {}", c);
}