You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1015 B

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/13 09:31:46 by narnaud #+# #+# */
/* Updated: 2022/06/13 15:16:37 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#include "PhoneBook.hpp"
int main(void)
{
PhoneBook pb;
while (pb.run() == EXIT_SUCCESS)
;
return (EXIT_SUCCESS);
}