mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +03:00
9 lines
117 B
Plaintext
9 lines
117 B
Plaintext
import test_import.(
|
|
Point,
|
|
foo
|
|
);
|
|
|
|
function main() -> u32 {
|
|
let p = Point { x: 1u32, y: 0u32 };
|
|
return p.x
|
|
} |