import faux from "./builtins.ts"; let y = 0; export default { init() { }, update() { y++; if (y>127) { y=-5; } }, draw() { faux.clearScreen(); faux.drawText(0, y, "hello, world"); }, }