mirror of
https://github.com/usatiuk/nand2tetris.git
synced 2025-10-28 16:17:48 +01:00
8 lines
141 B
Plaintext
8 lines
141 B
Plaintext
class Main {
|
|
function void main() {
|
|
var Game game;
|
|
let game = Game.new();
|
|
do game.loop();
|
|
return;
|
|
}
|
|
} |