diff options
Diffstat (limited to '')
-rw-r--r-- | ee1301/wk0/lab0/lab0.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ee1301/wk0/lab0/lab0.cpp b/ee1301/wk0/lab0/lab0.cpp index f18b1eb..0fe5983 100644 --- a/ee1301/wk0/lab0/lab0.cpp +++ b/ee1301/wk0/lab0/lab0.cpp @@ -1,13 +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; -} +// 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;
+}
|