leo/compiler/tests/import/basic.leo

5 lines
79 B
Plaintext
Raw Normal View History

2020-08-15 11:58:33 +03:00
import test-import.foo;
2020-07-30 23:01:04 +03:00
function main() {
2020-08-17 05:14:26 +03:00
console.assert(foo() == 1u32);
}