1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00
ZoKrates/zokrates_cli/examples/bool_not.zok
2022-06-01 00:04:40 +02:00

4 lines
No EOL
100 B
Text

def main(field a) -> field {
field x = !(!(a < 5) && !(a > 1) || a < 4) ? 3 : 4;
return x;
}