From 0ef79a1de1bf90b30808c470867b3e627edd27d8 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Sun, 21 Sep 2025 14:11:45 +0200 Subject: Begin working on the project --- main.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 main.c (limited to 'main.c') diff --git a/main.c b/main.c new file mode 100644 index 0000000..df03ade --- /dev/null +++ b/main.c @@ -0,0 +1,26 @@ +/* main.c: Entrypoint to the APL interpreter. + * + * Copyright (C) 2025 Peter Mikkelsen + * + * 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(int, char **) +{ + printf("Hello from APL\n"); + return 0; +} -- cgit v1.2.3