From 3c42545dfb09456adbef5f388f38e86592b2c3e0 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Fri, 5 Jan 2024 12:11:28 -0500 Subject: [PATCH] add initial code --- src/main.cpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/main.cpp diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..ad0a33b --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,31 @@ +/************************************************************************* + * + * This file is part of the ACT library + * + * Copyright (c) 2020 Rajit Manohar + * + * 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 2 + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + ************************************************************************** + */ + +#include + +int main (int argc, char **argv) { + + std::cout << "Hello world!" << std::endl; + +} \ No newline at end of file