mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 16:41:42 +03:00
10 lines
140 B
Plaintext
10 lines
140 B
Plaintext
|
circuit Foo {
|
||
|
function bar() -> u32 {
|
||
|
return self.f
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() {
|
||
|
let foo = Foo { };
|
||
|
let err = foo.bar();
|
||
|
}
|