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

10 lines
159 B
Plaintext
Raw Normal View History

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