-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
24 lines (21 loc) · 1.02 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aperez-b <aperez-b@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/21 13:55:25 by aperez-b #+# #+# */
/* Updated: 2022/05/21 14:25:28 by aperez-b ### ########.fr */
/* */
/* ************************************************************************** */
#include "Karen.hpp"
int main(void)
{
Karen k;
k.complain("DEBUG");
k.complain("INFO");
k.complain("WARNING");
k.complain("ERROR");
return (0);
}