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

10 lines
147 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)
var A = "a".import_("A")
IO.print("b imported ", A)
IO.print("end b")