Files
cpp00/ex01/main.cpp
Angel Ortigosa Perez 95c25afc03 cpp00...
2025-09-07 10:02:26 +02:00

34 lines
1.3 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/09/02 21:54:41 by aortigos #+# #+# */
/* Updated: 2025/09/06 15:49:04 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Phonebook/Phonebook.hpp"
int main()
{
Phonebook ph;
std::string str;
str = "";
while (str != "EXIT")
{
std::cout << "Phonebook > ";
std::getline(std::cin, str);
if (str == "ADD")
ph.addContacts();
else if (str == "SHOW")
ph.showContacts();
std::cout << std::endl;
}
return (0);
}