Files
cchax/mods/mod_b.c
2025-09-15 16:08:41 +02:00

13 lines
137 B
C

#include "mod.h"
#include <stdio.h>
static int hello() {
printf("Hello, World!\n");
return 0;
}
mod_register(mod_b, hello);