Hacker News new | ask | show | jobs
by alpn 2643 days ago
To quickly build and run from your terminal:

   git clone https://github.com/taylorconor/tinytetris && cd tinytetris
   gcc tinytetris.cpp -lcurses -o tetris && ./tetris
1 comments

Or straight from curl:

    curl https://raw.githubusercontent.com/taylorconor/tinytetris/master/tinytetris.cpp | gcc -x c++ - -lcurses -o tinytetris