/**
- K: a 2048 clone written in Jack language
- Coursework for Nand2Tetris (http://nand2tetris.org/)
- Author: Yuchen Pei (me@ypei.me)
- This file: the main file for the K game
*/
class Main {
    function void main() {
        var KGame game;
        do Board.init();
        let game = KGame.new();
        do game.run();
        do game.dispose();
        return;
    }
}