summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: 97925da665b5ce3b7cd0bbe9d1fbd2b71894e361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
/*
Thomas Trinh
CST116
Lab 3: New York, New York
*/

#include <iostream>

using namespace std;

using std::cout;
using std::cin;
using std::endl;

int main()
{
    cout << "Hello World!\n";
}