summaryrefslogtreecommitdiff
path: root/7p15.cpp
blob: 8a6662c14bce04b3ed97d0a13800d6174cf84ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include "person.hpp"

/*
 *
 * 7.15
 *
 *
 */

int main () {

	Person p1("John Doe");
	Person p2("Jane Doe", "Street Street 1");
	std::cout << p1.GetName() << " " << p1.GetAddress() << std::endl;
	std::cout << p2.GetName() << " " << p2.GetAddress() << std::endl;
	return 0;
}