From 7e7cbaf0e2db8d5b25bc47fa4bacee21525cefc0 Mon Sep 17 00:00:00 2001 From: Justin Date: Sat, 10 May 2025 16:54:00 -0500 Subject: [PATCH] Fixed some errors and typo --- src/include/intro.h | 4 ++-- src/intro.cpp | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/include/intro.h b/src/include/intro.h index 5e2b33e..9dee87f 100644 --- a/src/include/intro.h +++ b/src/include/intro.h @@ -1,6 +1,6 @@ #include -#include "include/print.h" -use namespace std; +#include "print.h" +using namespace std; class Intro { public: diff --git a/src/intro.cpp b/src/intro.cpp index 2ae389d..895e868 100644 --- a/src/intro.cpp +++ b/src/intro.cpp @@ -1,8 +1,7 @@ #include "include/intro.h" -#include "include/print.h" void Intro::intro(){ Print print; - pint.println("") + print.println(""); }