11 lines
119 B
C++
11 lines
119 B
C++
|
#include <iostream>
|
||
|
#include "application.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Application app;
|
||
|
app.run();
|
||
|
}
|