1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_01/ex05/main.cpp

23 lines
1.0 KiB
C++
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/09 16:12:06 by adjoly #+# #+# */
/* Updated: 2024/11/09 17:43:48 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "harl.hpp"
int main(void) {
Harl harl;
harl.complain("INFO");
harl.complain("DEBUG");
harl.complain("WARNING");
harl.complain("ERROR");
}