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
1.0 KiB
23 lines
1.0 KiB
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/06/17 11:37:33 by narnaud #+# #+# */
|
|
/* Updated: 2022/06/17 12:45:24 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "Harl.hpp"
|
|
|
|
int main(void)
|
|
{
|
|
Harl bot;
|
|
bot._complain("DEBUG");
|
|
bot._complain("INFO");
|
|
bot._complain("WARNING");
|
|
bot._complain("ERROR");
|
|
|
|
}
|
|
|