mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 16:41:42 +03:00
13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
|
circuit Foo {
|
||
|
x: u32,
|
||
|
|
||
|
function echo(self) -> u32 {
|
||
|
return self.x
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() {
|
||
|
let a = Foo { x: 1u32 };
|
||
|
|
||
|
console.assert(a.echo() == 1u32);
|
||
|
}
|