1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/book/logging.zok

9 lines
No EOL
119 B
Text

struct Foo {
field[3] a;
bool b;
}
def main(Foo x, field y) {
log("x is {}, y is {}", x, y);
return;
}