forked from Mirror/wren
9 lines
229 B
Plaintext
9 lines
229 B
Plaintext
class VM {
|
|
foreign static nullConfig()
|
|
foreign static multipleInterpretCalls()
|
|
}
|
|
// TODO: Other configuration settings.
|
|
|
|
System.print(VM.nullConfig()) // expect: true
|
|
System.print(VM.multipleInterpretCalls()) // expect: true
|