12 lines
197 B
C++
12 lines
197 B
C++
#include "Harl.hpp"
|
|
|
|
int main(void) {
|
|
Harl harl;
|
|
|
|
harl.complain("Debug");
|
|
harl.complain("DEBUG");
|
|
harl.complain("INFO");
|
|
harl.complain("WARNING");
|
|
harl.complain("ERROR");
|
|
return 0;
|
|
}
|