mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +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 `.`
|
|
} |