blob: 467333a8244a3fccbde27e0d216d3074899b4227 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
//Trenton Stark, CST 116, Lab 0
#include <iostream>
using std::cout;
using std::endl;
int main()
{
cout << "Hello World!" << endl;
cout << "I am Trenton Stark and my GitHub name is @Birducken." << endl;
}
|