mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
17 lines
351 B
Plaintext
17 lines
351 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
function main() -> group {
|
|
const pos_element: group = 1group;
|
|
const neg_element: group = -1group;
|
|
|
|
const pair_x_pos: group = (1, _)group;
|
|
const pair_x_neg: group = (-1, _)group;
|
|
|
|
const pair_y_pos: group = (_, 1)group;
|
|
const pair_y_neg: group = (_, -1)group;
|
|
|
|
return pair_x_neg;
|
|
} |