Files
wren/test/language/module/cyclic_import/b.wren

10 lines
159 B
Plaintext
Raw Normal View History

// nontest
System.print("start b")
var B = "b value"
System.print("b defined %(B)")
import "./a" for A
System.print("b imported %(A)")
System.print("end b")