From 6f7be667e2658e3413a5c489611d25e7afc64f0d Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 25 Jul 2024 21:05:54 +0100 Subject: Hello, world! --- src/main.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..5d7858f --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,24 @@ +/* Copyright (C) 2024 Aryadev Chavali + + * 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 Version 2 for + * details. + + * You may distribute and modify this code under the terms of the GNU General + * Public License Version 2, which you should have received a copy of along with + * this program. If not, please go to . + + * Created: 2024-07-25 + * Author: Aryadev Chavali + * Description: Entrypoint + */ + +#include +#include + +int main(void) +{ + puts("Hello, world!"); + return 0; +} -- cgit v1.2.3-13-gbd6f