blob: 1a9470523bc4100fbe6c6b362a74ff435962b45b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|