11 lines
166 B
C++
11 lines
166 B
C++
#include "PhoneBook.class.cpp"
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
|
|
PhoneBook yellow;
|
|
yellow.contact.add_first("hugo");
|
|
yellow.contact.print_contact();
|
|
return 0;
|
|
}
|