From f2203f768876b4f7a499086d8fcc91e1706b1700 Mon Sep 17 00:00:00 2001 From: riotbrewing <97713126+riotbrewing@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:35:40 -0500 Subject: [PATCH] Update RepoTest.cpp added namespace --- RepoTest/RepoTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RepoTest/RepoTest.cpp b/RepoTest/RepoTest.cpp index 4fac04d..07db915 100644 --- a/RepoTest/RepoTest.cpp +++ b/RepoTest/RepoTest.cpp @@ -1,9 +1,9 @@ #include - +using namespace std; int main() { - std::cout << "Hello Professor Ruse!\n"; + cout << "Hello Professor Ruse!\n"; }