mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-02 23:07:27 +03:00
9 lines
111 B
Plaintext
9 lines
111 B
Plaintext
circuit Foo {
|
|
x: u32,
|
|
}
|
|
|
|
function main() {
|
|
let a = Foo { x: 1u32 };
|
|
|
|
console.assert(a.x == 1u32);
|
|
} |