From 21aaa09ec4ada850c7ff11f61e31a3c64ac3ddf6 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 9 Sep 2022 15:13:57 -0600 Subject: Create helloWorld.cpp --- hw2/helloWorld.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hw2/helloWorld.cpp diff --git a/hw2/helloWorld.cpp b/hw2/helloWorld.cpp new file mode 100644 index 0000000..f632bdb --- /dev/null +++ b/hw2/helloWorld.cpp @@ -0,0 +1,11 @@ +// CSCI 1300 Fall 2022 +// Author: Navan Chauhan +// Homework 2 - Problem 1 + +#include + +using namespace std; + +int main() { + cout << "Hello, World!"; +} -- cgit v1.2.3