mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
import test-import.foo as bar;
|
|
import bar.baz.ONE as UNO;
|
|
|
|
function main() {
|
|
console.assert(bar() == 1u32);
|
|
console.assert(UNO == 1u8);
|
|
}
|