Files
cpp05/ex02/main.cpp

30 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hadi <hadi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/16 22:32:41 by hadi #+# #+# */
/* Updated: 2026/02/17 16:24:37 by hadi ### ########.fr */
/* */
/* ************************************************************************** */
#include "Bureaucrat/Bureaucrat.hpp"
#include "AForm/AForm.hpp"
int main()
{
std::cout << "---- ex01 tests ----" << std::endl;
try {
Bureaucrat angel("Angel", 140);
} catch (std::exception &e) {
std::cout << e.what() << std::endl;
}
std::cout << std::endl;
return (0);
}