From 902854323b0ad25bad8426fcb2090e15c865aa4a Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sun, 25 Aug 2019 14:12:47 -0400 Subject: added main.cpp --- src/main.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main.cpp 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 . + */ + +#include + +int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) +{ + std::cout << "Hello, world!" << std::endl; + return 0; +} + -- cgit v1.2.3