leo/tests/compiler/_group/positive_and_negative.leo
2021-05-05 17:48:33 +03:00

10 lines
232 B
Plaintext

function main() {
const pos_element = 1group;
const neg_element = -1group;
const pair_x_pos = (1, _)group;
const pair_x_neg = (-1, _)group;
const pair_y_pos = (_, 1)group;
const pair_y_neg = (_, -1)group;
}