blob: 4e2c5ae187ecf26600b2e0a52dae5e99021f7778 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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> //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
*/
|