diff options
-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!"; +} |