Initial commit.

This commit is contained in:
2021-10-14 04:01:16 +01:00
commit 05dbda33ab
9 changed files with 1467 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");
}