mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
13 lines
269 B
Plaintext
13 lines
269 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_group.in
|
|
*/
|
|
|
|
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);
|
|
}
|