summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/cst116-lab2-stark.cpp
blob: 2e0131f2f483e0937233062869aafb348f3243a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Trenton Stark
// CST-116
// Lab 2

#include <iostream>

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

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