aboutsummaryrefslogtreecommitdiff
path: root/Project1/main.cpp
blob: 85da9786e9b467cd1c7e5f1e8cc6ae8ff604deb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Name: Connor McDowell
// date: 2/19/24
// class: CST116
// reason: learning classes, in class exercise 13

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

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


int main()
{
	contact newContact;

	//cout << newContact.GetAge();

	//newContact.SetAge(42);
	//newContact

	newContact.print();

	return 0;
}