blob: df28c4d30b1a93039622d9c4c2987306ac248b24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Lab 0
// Matthew Strapp
// 2019-01-23
//
// This program displays a message to the screen
#include <iostream> using namespace std;
int main()
{
cout << "Hello!" << endl; return 0;
}
|