mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +03:00
10 lines
214 B
Plaintext
10 lines
214 B
Plaintext
circuit Foo {
|
|
static function echo(x: u32) -> u32 {
|
|
return x
|
|
}
|
|
}
|
|
|
|
function main() -> u32 {
|
|
let c = Foo { };
|
|
return c.echo(1u32) // echo is a static function and must be accessed using `::`
|
|
} |