phonebook class contact fonction print fonctionne

This commit is contained in:
hugogogo
2022-02-02 21:30:13 +01:00
parent cdd562216a
commit 9d45496f8b
14 changed files with 117 additions and 96 deletions

10
d00/ex01/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "PhoneBook.class.cpp"
#include <iostream>
int main() {
PhoneBook yellow;
yellow.contact.add_first("hugo");
yellow.contact.print_contact();
return 0;
}