summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2022-09-09 15:13:57 -0600
committerGitHub <noreply@github.com>2022-09-09 15:13:57 -0600
commit21aaa09ec4ada850c7ff11f61e31a3c64ac3ddf6 (patch)
treec5bf36ea61bd3a0226e27fdd97ffd0af4c0d9039
Create helloWorld.cpp
-rw-r--r--hw2/helloWorld.cpp11
1 files changed, 11 insertions, 0 deletions
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<iostream>
+
+using namespace std;
+
+int main() {
+ cout << "Hello, World!";
+}