diff options
| author | Derek Preston <[email protected]> | 2022-10-01 12:01:32 -0700 |
|---|---|---|
| committer | Derek Preston <[email protected]> | 2022-10-01 12:01:32 -0700 |
| commit | d668580ecec0fc888029e59cd454dfe867b28318 (patch) | |
| tree | cde4cbde4a786d869a7860d232247403f8f2468f | |
| parent | Commit on 10/1/22 (diff) | |
| download | cst116-lab0-prestonderek-main.tar.xz cst116-lab0-prestonderek-main.zip | |
| -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 + + +*/ |