Initial commit

This commit is contained in:
2020-05-17 23:16:40 +02:00
commit 1771977c98
11 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <test_static_library.h>
#include <stdio.h>
int hello(int input) {
input -= 2;
printf("Hello, World %d!\n", input);
return input;
}