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

9 lines
138 B
Plaintext
Raw Normal View History

2015-02-11 10:06:45 -08:00
// nontest
IO.print("start a")
var A = "a value"
IO.print("a defined ", A)
2015-02-14 16:46:00 -08:00
import "b" for B
2015-02-11 10:06:45 -08:00
IO.print("a imported ", B)
IO.print("end a")