summaryrefslogtreecommitdiff
path: root/ex06/main.cpp
diff options
context:
space:
mode:
authorDominik Kaiser2025-02-12 13:28:42 +0100
committerDominik Kaiser2025-02-12 13:28:42 +0100
commit92a665752945aa7731ad51fa66ecac768064c51e (patch)
tree0f98445db173155287411578baeea8d80ad85112 /ex06/main.cpp
parent368088666e4de671a3309a49cdd0dc6b2f30c003 (diff)
downloadcpp01-92a665752945aa7731ad51fa66ecac768064c51e.tar.gz
cpp01-92a665752945aa7731ad51fa66ecac768064c51e.zip
Copy files from ex05 to ex06
Diffstat (limited to 'ex06/main.cpp')
-rw-r--r--ex06/main.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/ex06/main.cpp b/ex06/main.cpp
new file mode 100644
index 0000000..1180187
--- /dev/null
+++ b/ex06/main.cpp
@@ -0,0 +1,24 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* main.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2025/02/12 10:35:53 by dkaiser #+# #+# */
+/* 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");
+}