mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 20:50:55 +08:00
11 lines
144 B
Plaintext
11 lines
144 B
Plaintext
|
|
||
|
print('before cyclic_b')
|
||
|
import cyclic_a
|
||
|
print('after cyclic_b')
|
||
|
|
||
|
def fn_b()
|
||
|
assert(cyclic_a.fn_a() == "cyclic a")
|
||
|
return "cyclic b"
|
||
|
end
|
||
|
|