mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-22 09:01:35 +03:00
9 lines
127 B
Plaintext
9 lines
127 B
Plaintext
|
circuit Foo {
|
||
|
function echo(x: u32) -> u32 {
|
||
|
return x
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() {
|
||
|
let err = Foo::echoed(1u32);
|
||
|
}
|