diff options
| author | DoolyBoi <[email protected]> | 2022-09-29 15:06:02 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-09-29 15:06:02 -0700 |
| commit | 98f06beec7199d1c39b05d57da45ccd5771a2fc1 (patch) | |
| tree | 9fc3c5cf56cc86bbea8235625f92f43f0585e830 | |
| parent | added using statement and reaplaced the unessicary std statement in the print... (diff) | |
| download | cst116-lab0-abd00l4h-98f06beec7199d1c39b05d57da45ccd5771a2fc1.tar.xz cst116-lab0-abd00l4h-98f06beec7199d1c39b05d57da45ccd5771a2fc1.zip | |
Finished adding who I am and my github name
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index a10244f..abb06e1 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -15,6 +15,7 @@ using std::endl; int main()
{
cout << "Hello World!" << endl;
+ cout << "My name is Abdullah Havaldar and my github name is abd00l4h" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|