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