summaryrefslogtreecommitdiff
path: root/ex05/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ex05/main.cpp')
-rw-r--r--ex05/main.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/ex05/main.cpp b/ex05/main.cpp
index 72a3752..1180187 100644
--- a/ex05/main.cpp
+++ b/ex05/main.cpp
@@ -6,9 +6,19 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/12 10:35:53 by dkaiser #+# #+# */
-/* Updated: 2025/02/12 10:36:35 by dkaiser ### ########.fr */
+/* Updated: 2025/02/12 11:35:27 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
+#include "Harl.hpp"
+
int main(void)
-{}
+{
+ Harl harl = Harl();
+
+ harl.complain("DEBUG");
+ harl.complain("INFO");
+ harl.complain("WARNING");
+ harl.complain("ERROR");
+ harl.complain("Invalid Input");
+}