aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-08-25 14:12:47 -0400
committertcsullivan <tullivan99@gmail.com>2019-08-25 14:12:47 -0400
commit902854323b0ad25bad8426fcb2090e15c865aa4a (patch)
tree122d4eb78b41ccb9cf12de9209915f650d5d98a9
parent2d9288673bf4c1673bae4f54a320788ef9de12d1 (diff)
added main.cpp
-rw-r--r--src/main.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..a8b46c0
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,28 @@
+/**
+ * @file main.cpp
+ * The main file, where the magic begins.
+ *
+ * Copyright (C) 2019 Clyne Sullivan
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+#include <iostream>
+
+int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[])
+{
+ std::cout << "Hello, world!" << std::endl;
+ return 0;
+}
+