mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
struct P {
|
|
field x;
|
|
field[2] y;
|
|
}
|
|
|
|
def main(field[2] a, field b, P c) -> field {
|
|
return a[0] + a[1] + b + c.x + c.y[0] + c.y[1];
|
|
} |