mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
9 lines
135 B
Plaintext
9 lines
135 B
Plaintext
circuit Foo {
|
|
static function echo(x: u32) -> u32 {
|
|
return x
|
|
}
|
|
}
|
|
|
|
function main() -> u32 {
|
|
return Foo::echo(1u32)
|
|
} |