// 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 //includes the iostream library 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() //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 */