Paste #253046

   
pasted on 02.02.2022 21:54
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 266468
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#include <QApplication>
#include <tetris.hpp>
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Tetris app;
    app.show();

    return a.exec();
}
Add Comment
Author