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