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