blob: 0fe5983e942238d3945bbf7100a715d8744ed427 (
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;
}
|