blob: 5e0cb177317fdecdcc50130b55828f615a8bfe26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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";
return 0;
}
|