Complex import sample and support for import dependency cycles.

This commit is contained in:
2023-09-03 02:41:02 -07:00
parent 4f567eb287
commit bf3967544a
9 changed files with 33 additions and 17 deletions

6
examples/complex/d.pork Normal file
View File

@ -0,0 +1,6 @@
import "b.pork"
export func d() {
b()
println("D")
}