mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
import test-import.*; // local import
|
|
|
|
import bar.*; // imports directory import
|
|
import bar.baz.*; // imports directory import
|
|
import bar.bat.bat.*; // imports directory import
|
|
import car.*; // imports directory import
|
|
|
|
function main() {
|
|
let point = Point { x: 1u32, y: 1u32 };
|
|
let foo = foo();
|
|
|
|
let bar = Bar { r: 1u32 };
|
|
let bat = Bat { t: 1u32 };
|
|
let baz = Baz { z: 1u32 };
|
|
|
|
let car = Car { c: 1u32 };
|
|
|
|
console.assert(car.c == 1u32);
|
|
} |