mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
9 lines
184 B
Plaintext
9 lines
184 B
Plaintext
|
circuit Circ {
|
||
|
function echo(x: u32) -> u32 {
|
||
|
return x
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() -> u32 {
|
||
|
return Circ::echo(1u32) // echo is a non-static function and must be accessed using `.`
|
||
|
}
|