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

13 lines
139 B
Plaintext
Raw Normal View History

// nontest
var Module = "before"
class Other {
static change {
Module = "after"
}
static show {
System.print(Module)
}
}