mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
15 lines
183 B
Plaintext
15 lines
183 B
Plaintext
circuit Foo {
|
|
a: u8,
|
|
|
|
function bar() {}
|
|
|
|
function set_a(new: u8) {
|
|
self.bar = new;
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
let mut f = Foo { a: 0u8 };
|
|
|
|
f.set_a(1u8);
|
|
} |