1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/assign_to_element.zok
2022-06-28 19:23:45 +02:00

9 lines
No EOL
124 B
Text

def foo() -> u32 {
return 0;
}
def main(u32[1] mut a, (u32,) mut b) {
a[0] = foo();
b.0 = foo();
return;
}