1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/book/declaration.zok
2022-06-21 15:03:53 +02:00

7 lines
No EOL
144 B
Text

def main() {
// declare and define `my_variable`
field my_variable = 2;
// redefine `my_variable`
my_variable = 3;
return;
}