diff options
| author | Musa Ahmed <[email protected]> | 2022-09-29 15:02:24 -0700 |
|---|---|---|
| committer | Musa Ahmed <[email protected]> | 2022-09-29 15:02:24 -0700 |
| commit | 842a0f04d334b9201f4f7db96f9725f7108d677f (patch) | |
| tree | 0686937cf8640d0599147abfa70ec0c2169314c9 /CST116-BlankConsole/CST116-BlankConsole.cpp | |
| parent | simple change (diff) | |
| download | cst116-lab0-m005a-842a0f04d334b9201f4f7db96f9725f7108d677f.tar.xz cst116-lab0-m005a-842a0f04d334b9201f4f7db96f9725f7108d677f.zip | |
finished
Diffstat (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..49023f6 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,16 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+//Name: Musa, Course: CST116, Lab #0, Lab topics: Understand how to use the IDE and GitHub,and work with repositories
+
#include <iostream>
+using std::cout;
+using std::endl;
+
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "My name is Musa and my GitHub is: M0054" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|