mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
9 lines
101 B
Plaintext
9 lines
101 B
Plaintext
circuit Foo {
|
|
x: u32;
|
|
}
|
|
|
|
function main() {
|
|
const a = Foo { x: 1u32 };
|
|
|
|
const err = a.y;
|
|
} |