mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +03:00
10 lines
143 B
Plaintext
10 lines
143 B
Plaintext
circuit Foo {
|
|
function bar() -> u32 {
|
|
return self.f
|
|
}
|
|
}
|
|
|
|
function main() -> u32 {
|
|
let foo = Foo { };
|
|
return foo.bar()
|
|
} |