diff options
| author | LTB-Pravda <[email protected]> | 2021-10-05 16:51:01 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-05 16:51:01 -0700 |
| commit | 7c2fcdc8600af064ee3d3a2f9c5313486cd9753b (patch) | |
| tree | 26263ea5da659ad9ee56dfa17e5c78820fca872f /Billingsley_Lab1_2C.cpp | |
| parent | Add online IDE url (diff) | |
| download | cst116-lab1-ltb-pravda-main.tar.xz cst116-lab1-ltb-pravda-main.zip | |
Diffstat (limited to 'Billingsley_Lab1_2C.cpp')
| -rw-r--r-- | Billingsley_Lab1_2C.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Billingsley_Lab1_2C.cpp b/Billingsley_Lab1_2C.cpp new file mode 100644 index 0000000..dd9bece --- /dev/null +++ b/Billingsley_Lab1_2C.cpp @@ -0,0 +1,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;
+
+}
+
|