aboutsummaryrefslogtreecommitdiff
path: root/Billingsley_Lab1_2C.cpp
blob: dd9becea2fbd08b5743e31e3a742c0c8fa510b79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Billingsley_Lab1_2C.cpp : This file contains the 'main' function. Program execution begins and ends there.

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!\n"
        << "Programmed to work and not to feel\n"
        << "Not even sure that this is real\n"
        << "Hello, world!\n\n";

    cout << "\t- Part of \"Hello World\" by Louie Zong\n\n";
    cout << "Program by Logan Billingsley, age 18.

        return 0;

}