diff options
Diffstat (limited to 'CST116Lab0Preston')
| -rw-r--r-- | CST116Lab0Preston/CST116Lab0Preston.cpp | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/CST116Lab0Preston/CST116Lab0Preston.cpp b/CST116Lab0Preston/CST116Lab0Preston.cpp index 1a94705..4e2c5ae 100644 --- a/CST116Lab0Preston/CST116Lab0Preston.cpp +++ b/CST116Lab0Preston/CST116Lab0Preston.cpp @@ -5,17 +5,25 @@ //Lab0 //Learn IDE and GitHub -#include <iostream> +#include <iostream> //includes the iostream library -using std::cout; -using std::endl; +using std::cout; //allows you to not type std::cout everywhere +using std::endl; //allows you to not type /n on lines where you want an end line. -int main() +int main() //Beginning of the program { cout << "Hello World!" << endl; cout << "My name is Derek!" << endl; cout << "My GitHub is @prestonderek" << endl; -} +} //program done //Finished. Commit on 9/29/2022 at 8:30am +//Commit on 10/1/22 at 11:30am +//Commit again on 10/1/22 For practice. + +/* +Committing with different comment brackets for more practice + + +*/ |