mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
11 lines
121 B
Plaintext
11 lines
121 B
Plaintext
circuit Foo {
|
|
a: u8,
|
|
|
|
function bar() {}
|
|
}
|
|
|
|
function main() {
|
|
let mut f = Foo { a: 0u8 };
|
|
|
|
f.bar = 1u8;
|
|
} |