13 lines
197 B
C++
13 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;
|
||
|
|
}
|