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

10 lines
139 B
Plaintext
Raw Normal View History

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