-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
21 lines (16 loc) · 780 Bytes
/
main.cpp
File metadata and controls
21 lines (16 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include "Logic/TerminalProgram.h"
using namespace std;
// Method responsible for starting the entire program
int main()
{
cout << "------------------------------------------------------------" << endl;
cout << "| Running Triangle Path Program |" << endl;
cout << "------------------------------------------------------------" << endl;
TerminalProgram terminalProgram;
terminalProgram.initialiseTerminal(); // Loading the terminal program
cout << "------------------------------------------------------------" << endl;
cout << "| Stopped Running Triangle Path Program |" << endl;
cout << "------------------------------------------------------------" << endl;
return 0;
}