Files
wren/test/language/module/change_imported_value/module.wren
T

13 lines
139 B
Plaintext
Raw Normal View History

2015-02-06 07:01:15 -08:00
// nontest
var Module = "before"
class Other {
static change {
Module = "after"
}
static show {
2015-09-15 07:46:09 -07:00
System.print(Module)
2015-02-06 07:01:15 -08:00
}
}