nes-proj/tests/07-simulation-base/js/hello-world.js
2017-11-23 06:53:24 -08:00

10 lines
131 B
JavaScript

TIMEOUT(5000);
while(true) {
log.log("> " + msg + "\n");
if (msg.equals('Hello, world')) {
log.testOK();
}
YIELD();
}