From 68a8d9124229447eeb07f0c5d5f0d6147096a3ce Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Thu, 30 May 2024 18:58:31 +0900 Subject: Initial commit --- src/calculer.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/calculer.c (limited to 'src/calculer.c') diff --git a/src/calculer.c b/src/calculer.c new file mode 100644 index 0000000..b1de0a4 --- /dev/null +++ b/src/calculer.c @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2024 Tristan Riehs + * + * 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 "config.h" + +#include + +int +main(void) +{ + printf("%s\n", PACKAGE_STRING); + return 0; +} -- cgit v1.2.3