aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-01-22 21:06:29 -0600
committerRossTheRoss <msattr@gmail.com>2019-01-22 21:06:29 -0600
commitec3cc1c4fc962c820e277ec3e118fa722560f92f (patch)
treec242708b786821ee6b8c7ee59850a354aa9e8d5e
parentFix tabs because I'm an idiot (diff)
parentWhy tho (diff)
downloadhomework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar.gz
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar.bz2
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar.lz
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar.xz
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.tar.zst
homework-ec3cc1c4fc962c820e277ec3e118fa722560f92f.zip
Merge branch 'master' of github.com:RosstheRoss/TestingFun
Diffstat (limited to '')
-rw-r--r--ee1301/wk0/wk0.cpp13
-rw-r--r--test.c1
2 files changed, 13 insertions, 1 deletions
diff --git a/ee1301/wk0/wk0.cpp b/ee1301/wk0/wk0.cpp
new file mode 100644
index 0000000..5ea8196
--- /dev/null
+++ b/ee1301/wk0/wk0.cpp
@@ -0,0 +1,13 @@
+// Lab 0
+// Matthew Strapp
+// 2018-01-23
+//
+// This program displays a message to the screen
+#include <iostream>
+using namespace std;
+
+int main()
+{
+cout << "Hello!" << endl;
+return 0;
+}
diff --git a/test.c b/test.c
deleted file mode 100644
index a2e5dde..0000000
--- a/test.c
+++ /dev/null
@@ -1 +0,0 @@
-// This is just me messing with things to see if anything happens.