aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan <[email protected]>2024-04-03 19:22:15 -0700
committerLogan <[email protected]>2024-04-03 19:22:15 -0700
commita953268889ed3b65bdb672347b06e55d06cfc7fe (patch)
tree847ca00e18c2954e1888c250f76ffde03ebc8cd0
parentadd deadline (diff)
downloadhomework-1-bobjoe64-a953268889ed3b65bdb672347b06e55d06cfc7fe.tar.xz
homework-1-bobjoe64-a953268889ed3b65bdb672347b06e55d06cfc7fe.zip
Added Hello World
-rw-r--r--CST 126/Homework 1/main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/CST 126/Homework 1/main.cpp b/CST 126/Homework 1/main.cpp
index 398e580..5d25e6d 100644
--- a/CST 126/Homework 1/main.cpp
+++ b/CST 126/Homework 1/main.cpp
@@ -1,8 +1,12 @@
-// Name: Arthur Spears
+// Name: Logan Gillespie
// Class: CST 126
// Date: 3/31/24
// Assignment: Homework
-int main() {
- return 0;
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ cout << "Hello World" << endl;
} \ No newline at end of file