aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
blob: e893d7fdfecb4d49f829fb3440222beedacf4a1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// name: Connor McDowell
// date: 2/10/2024
// class: CST116
// reason: homework number 5

#include "Contacts.h"
#include <iostream>

using std::cin;
using std::cout;
using std::endl;

int main()
{
	addNew();



	return 0;
}