forked from Mirror/wren
Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
13 lines
135 B
Plaintext
13 lines
135 B
Plaintext
// nontest
|
|
var Module = "before"
|
|
|
|
class Other {
|
|
static change {
|
|
Module = "after"
|
|
}
|
|
|
|
static show {
|
|
IO.print(Module)
|
|
}
|
|
}
|