From aace23ead78fa22edb2533565acfa379e451c5eb Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 25 Oct 2024 17:06:42 +0100 Subject: Hello, world! --- main.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 main.c (limited to 'main.c') diff --git a/main.c b/main.c new file mode 100644 index 0000000..2a38dde --- /dev/null +++ b/main.c @@ -0,0 +1,23 @@ +/* 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-10-25 + * Author: Aryadev Chavali + * Description: Entrypoint + */ + +#include + +int main(void) +{ + puts("Hello, world!"); + return 0; +} -- cgit v1.2.3-13-gbd6f