1
0
Fork 0
mirror of synced 2025-09-23 20:28:36 +00:00
ZoKrates/zokrates_cli/examples/boolean_literal.zok
2022-04-06 20:23:58 +02:00

3 lines
63 B
Text

def main(bool a) -> bool {
return (false || true) && false;
}