aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise13/main.cpp
blob: 3a3c87bdeb0fa0b8777b786f8b564ade3661a82a (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
//Name: Asahel Lopez
//Date: 3/3/24
//Class: CST 116
//Assignment: InClassExercise13

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


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

int main() {


	Contact myContact;

	myContact.SetFirstName("Name");
	myContact.SetLastName("LastName");

	myContact.Print();

	return 0;
}