mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 20:50:55 +08:00
13 lines
146 B
Plaintext
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
|