aboutsummaryrefslogtreecommitdiffstats
path: root/wk0/wk0.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wk0/wk0.cpp')
-rw-r--r--wk0/wk0.cpp6
1 files changed, 4 insertions, 2 deletions
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;
}