mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
16 lines
203 B
Plaintext
16 lines
203 B
Plaintext
circuit Foo {
|
|
foo: u32,
|
|
|
|
function bar() -> u32 {
|
|
return 1u32
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const a = Foo { foo: 1 };
|
|
|
|
const b = a.foo + Foo::bar();
|
|
|
|
console.assert(b == 2u32);
|
|
}
|