mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +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)
|
|
} |