6 lines
135 B
Text
6 lines
135 B
Text
// this code does not need to be flattened
|
|
def main(field x, field a, field b) -> field {
|
|
assert(a == b * 7);
|
|
return x + a + b;
|
|
}
|
|
|