Initial commit

This commit is contained in:
2025-09-15 16:08:41 +02:00
commit 19226ca82a
8 changed files with 156 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "mod.h"
#include <stdio.h>
static int hello() {
printf("Hello, World!\n");
return 0;
}
mod_register(mod_a, hello);
+12
View File
@@ -0,0 +1,12 @@
#include "mod.h"
#include <stdio.h>
static int hello() {
printf("Hello, World!\n");
return 0;
}
mod_register(mod_b, hello);