diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2022-09-09 15:13:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-09 15:13:57 -0600 |
commit | 21aaa09ec4ada850c7ff11f61e31a3c64ac3ddf6 (patch) | |
tree | c5bf36ea61bd3a0226e27fdd97ffd0af4c0d9039 /hw2/helloWorld.cpp |
Create helloWorld.cpp
Diffstat (limited to 'hw2/helloWorld.cpp')
-rw-r--r-- | hw2/helloWorld.cpp | 11 |
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!"; +} |