// Main Class. class Main { // Initializes the Pong game and starts it. function void main() { var PongGame game; // let game = PongGame.new(); let game = PongGame.getInstance(); do game.run(); do game.dispose(); return; } }