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

11 lines
139 B
Text

const field F = 10;
const u32 A = 10;
const u32 B = A;
def foo<N>(field X) -> field[N] {
return [X; N];
}
def main() {
return;
}