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.
20 lines
970 B
20 lines
970 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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 phone;
|
|
|
|
phone.run();
|
|
}
|
|
|