Files
42_INT_09_piscine_cpp/d00/ex01/main.cpp

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;
}