diff options
Diffstat (limited to '7p15.cpp')
-rw-r--r-- | 7p15.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,12 +1,18 @@ #include <iostream> +#include "person.hpp" /* * - * Description + * 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; } |