mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-27 20:24:52 +03:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_group.in
|
|
*/
|
|
|
|
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);
|
|
}
|