cpp01/ex05/main.cpp

13 lines
197 B
C++
Raw Permalink Normal View History

2025-05-12 16:18:41 +02:00
#include "Harl.hpp"
int main(void) {
Harl harl;
harl.complain("Debug");
harl.complain("DEBUG");
harl.complain("INFO");
harl.complain("WARNING");
harl.complain("ERROR");
2025-05-12 16:18:41 +02:00
return 0;
}