diff options
Diffstat (limited to 'Billingsley_Lab1_2B.cpp')
| -rw-r--r-- | Billingsley_Lab1_2B.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Billingsley_Lab1_2B.cpp b/Billingsley_Lab1_2B.cpp new file mode 100644 index 0000000..5e0cb17 --- /dev/null +++ b/Billingsley_Lab1_2B.cpp @@ -0,0 +1,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;
+
+}
+
|