mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
9 lines
100 B
Plaintext
9 lines
100 B
Plaintext
circuit Foo {
|
|
x: u32,
|
|
}
|
|
|
|
function main() -> u32 {
|
|
let c = Foo { x: 1u32 };
|
|
|
|
return c.x
|
|
} |