mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 13:48:40 +01:00
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
|