diff options
Diffstat (limited to '')
-rw-r--r-- | wk0/wk0.cpp | 6 |
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; } |