minimal black window

This commit is contained in:
2025-07-17 20:48:04 +02:00
parent b2af48e346
commit 036c5be9bf
5 changed files with 38 additions and 12 deletions
+7 -2
View File
@@ -1,8 +1,13 @@
#include "args.h"
#include "config.h"
#include "forge.h"
#include <stdbool.h>
#include <stdio.h>
int main(int argc, char **argv) {
parameters params;
params = parse_args(argc, argv);
// TODO
puts(PACKAGE " " VERSION);
forge_run(params);
return 0;
}
}