1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/book/abi.zok
2022-04-06 20:23:58 +02:00

12 lines
136 B
Text

struct Bar {
field a;
}
struct Foo {
u8 a;
Bar b;
}
def main(Foo foo, bool[2] bar, field num) -> field {
return 42;
}