aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk0/wk0.cpp
blob: 5ea8196fdaf3e73241f9a40bc4f645b153634d7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Lab 0
// Matthew Strapp
// 2018-01-23
//
// This program displays a message to the screen
#include <iostream>
using namespace std;

int main()
{
cout << "Hello!" << endl;
return 0;
}