mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 03:19:41 +03:00
9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
circuit Foo {
|
|
x: u32
|
|
}
|
|
|
|
function main() -> u32 {
|
|
let c = Foo { x: 1u32 };
|
|
|
|
return c.y
|
|
} |