diff options
Diffstat (limited to '')
-rw-r--r-- | wk0/lab0.cpp | 5 | ||||
-rw-r--r-- | wk0/wk0.cpp | 6 |
2 files changed, 4 insertions, 7 deletions
diff --git a/wk0/lab0.cpp b/wk0/lab0.cpp deleted file mode 100644 index 84725d9..0000000 --- a/wk0/lab0.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Lab 0 -// Matthew Strapp -// 2019-01-23 -// -// This program displays a message to the screen diff --git a/wk0/wk0.cpp b/wk0/wk0.cpp index f320bad..5ea8196 100644 --- a/wk0/wk0.cpp +++ b/wk0/wk0.cpp @@ -3,9 +3,11 @@ // 2018-01-23 // // This program displays a message to the screen -#include <iostream> using namespace std; +#include <iostream> +using namespace std; int main() { -cout << "Hello!" << endl; return 0; +cout << "Hello!" << endl; +return 0; } |