diff options
| author | Derek Preston <[email protected]> | 2022-10-01 11:51:10 -0700 |
|---|---|---|
| committer | Derek Preston <[email protected]> | 2022-10-01 11:51:10 -0700 |
| commit | ceb1b1967546bb200d531239de01b09092ec255f (patch) | |
| tree | ebb45762db6a8e149ac7efafe0569825aa3eb8cd /CST116Lab0Preston/CST116Lab0Preston.cpp | |
| parent | Commit on 9/29/22 at 8:30am (diff) | |
| download | cst116-lab0-prestonderek-ceb1b1967546bb200d531239de01b09092ec255f.tar.xz cst116-lab0-prestonderek-ceb1b1967546bb200d531239de01b09092ec255f.zip | |
Commit on 10/1/22
Changed File Names
Diffstat (limited to 'CST116Lab0Preston/CST116Lab0Preston.cpp')
| -rw-r--r-- | CST116Lab0Preston/CST116Lab0Preston.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/CST116Lab0Preston/CST116Lab0Preston.cpp b/CST116Lab0Preston/CST116Lab0Preston.cpp new file mode 100644 index 0000000..1a94705 --- /dev/null +++ b/CST116Lab0Preston/CST116Lab0Preston.cpp @@ -0,0 +1,21 @@ +// CST116Lab0Preston.cpp : This file contains the 'main' function. Program execution begins and ends there. + +//Derek Preston +//CST116 C++ Programming 1 +//Lab0 +//Learn IDE and GitHub + +#include <iostream> + +using std::cout; +using std::endl; + +int main() +{ + cout << "Hello World!" << endl; + cout << "My name is Derek!" << endl; + cout << "My GitHub is @prestonderek" << endl; +} + +//Finished. Commit on 9/29/2022 at 8:30am + |