diff options
| author | CEOofOogaBooga <[email protected]> | 2022-09-29 15:08:03 -0700 |
|---|---|---|
| committer | CEOofOogaBooga <[email protected]> | 2022-09-29 15:08:03 -0700 |
| commit | 1dfb2838d834ffedb2a09e4ae959be3017f6008e (patch) | |
| tree | 436d20d2839c9659c90bf008781ff3c75ec06fb1 | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0--trinh--1dfb2838d834ffedb2a09e4ae959be3017f6008e.tar.xz cst116-lab0--trinh--1dfb2838d834ffedb2a09e4ae959be3017f6008e.zip | |
Eeeeee
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 13 |
2 files changed, 15 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc58d0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/CST116-BlankConsole/.vs/CST116-BlankConsole +/.vs/Stupid Project/v17 diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..4bd08b3 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.
-//
+/* Thomas Trinh
+CST116
+Lab #0
+IDE, Simple Program, GitHub */
#include <iostream>
-
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "Thomas Trinh, CEOofOogaBooga;" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
@@ -17,4 +22,4 @@ int main() // 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
-// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
+// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
\ No newline at end of file |