Files
wren/test/language/module/cyclic_import/a.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 a")
2015-02-11 10:06:45 -08:00
var A = "a value"
2015-11-11 07:55:48 -08:00
System.print("a defined %(A)")
2015-02-14 16:46:00 -08:00
import "b" for B
2015-11-11 07:55:48 -08:00
System.print("a imported %(B)")
2015-02-11 10:06:45 -08:00
2015-11-11 07:55:48 -08:00
System.print("end a")