1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_stdlib/stdlib/utils/multiplexer/2bit.zok
2020-06-05 17:11:07 +02:00

2 lines
No EOL
104 B
Text

def main(bool selector, bool[2] lhs, bool[2] rhs) -> (bool[2]):
return if selector then rhs else lhs fi