mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
15 lines
252 B
Plaintext
15 lines
252 B
Plaintext
function main() {
|
|
let mut f = Foo { a: 0u32 };
|
|
|
|
f.bar();
|
|
}
|
|
|
|
circuit Foo {
|
|
a: u32
|
|
|
|
function bar(mut self) {
|
|
if true {
|
|
self.a = 5u32; // Mutating a variable inside a conditional statement should work.
|
|
}
|
|
}
|
|
} |