-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
25 lines (21 loc) · 1.05 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/07 14:48:28 by zelhajou #+# #+# */
/* Updated: 2024/06/07 20:22:52 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#include "Harl.hpp"
int main()
{
Harl harl;
harl.complain("DEBUG");
harl.complain("INFO");
harl.complain("WARNING");
harl.complain("ERROR");
return 0;
}