mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
circuit Foo {
|
|
a: u8,
|
|
|
|
function set_a(const self, new: u8) {
|
|
self.a = new;
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
let f = Foo { a: 0u8 };
|
|
|
|
f.set_a(1u8);
|
|
} |