Files
wren/test/api/new_vm.wren
2020-06-13 21:42:06 -07:00

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