mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 03:19:41 +03:00
12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
circuit Foo {
|
|
f: u32,
|
|
|
|
function bar() -> u32 {
|
|
return self.f
|
|
}
|
|
}
|
|
|
|
function main() -> u32 {
|
|
let foo = Foo { f: 1u32 };
|
|
return foo.bar()
|
|
} |