mirror of
https://github.com/ProvableHQ/leo.git
synced 2025-01-08 20:11:12 +03:00
11 lines
166 B
Plaintext
11 lines
166 B
Plaintext
circuit Foo {
|
|
function echo(self, x: u32) -> u32 {
|
|
return x
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const a = Foo { };
|
|
|
|
console.assert(a.echo(1u32) == 1u32);
|
|
} |