mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 03:19:41 +03:00
9 lines
129 B
Plaintext
9 lines
129 B
Plaintext
|
circuit Circ {
|
||
|
static function echo(x: u32) -> u32 {
|
||
|
return x
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() -> u32 {
|
||
|
return Circ::echoed(1u32)
|
||
|
}
|