This commit is contained in:
2025-08-23 12:59:05 +02:00
commit c2885322fa
7 changed files with 309 additions and 0 deletions

7
library.c Normal file
View File

@@ -0,0 +1,7 @@
#include "library.h"
#include <stdio.h>
void hello(void) {
printf("Hello, World!\n");
}