pocketlang/tests/lang/imports/cyclic_a.pk
Thakee Nathees 168f365cde import statements are refactored.
- all import statement (native or script file) have the same syntax
- allow relative (including parent directory) imports
- cyclic imports are handled by caching the scripts
- `import foo` can potentially import `<searchpath>/foo/_init.pk`
- * import are not supported anymore
2022-05-06 11:16:48 +05:30

13 lines
146 B
Plaintext

print('before cyclic_a')
import cyclic_b
print('after cyclic_a')
def fn_a()
return "cyclic a"
end
def get_b_fn()
return cyclic_b.fn_b
end