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

10 lines
157 B
Plaintext
Raw Normal View History

2015-02-11 10:06:45 -08:00
// nontest
2015-09-15 07:46:09 -07:00
System.print("start b")
2015-02-11 10:06:45 -08:00
var B = "b value"
2015-11-11 07:55:48 -08:00
System.print("b defined %(B)")
2015-02-14 16:46:00 -08:00
import "a" for A
2015-11-11 07:55:48 -08:00
System.print("b imported %(A)")
2015-02-11 10:06:45 -08:00
2015-09-15 07:46:09 -07:00
System.print("end b")