mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
15 lines
328 B
Plaintext
15 lines
328 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/main_group.in
|
|
*/
|
|
|
|
function main(const a: group, const b: group, const c: group, y: bool) -> bool {
|
|
// Change to assert when == is implemented for group.
|
|
console.log("a: {}", a);
|
|
console.log("b: {}", b);
|
|
console.log("c: {}", c);
|
|
|
|
return y == true;
|
|
}
|