This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/examples/game/scenes/menu.v

9 lines
249 B
Verilog

render(ctx, window) {
console.log('rendering!');
// process.stdout.write(typeof console.log);
ctx.font = `${Math.floor(600 / 5)}px serif`
ctx.fillStyle = 'red'
ctx.textAlign = 'center'
ctx.fillText("Hello, World!", 800 / 2, 600 / 2)
}