aboutsummaryrefslogtreecommitdiffstats
path: root/wk0/wk0.cpp
blob: f320bad42b9050da2c2cae0646492a63440c707e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// 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;
}