aboutsummaryrefslogtreecommitdiff
path: root/CST116-BlankConsole/CST116-Lab0-Mihm.cpp
blob: 0dcbcd641801b8014e876ded069339ef15c32195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Evan Mihm, cst116, Lab0
#include <iostream>

using std::cout;
using std::endl;

int main()
{
    cout << "Hello World!" << endl;
    cout << "Evan Mihm, My GitHub is evanmihm" << endl;
}