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

12 lines
136 B
C

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