Start point

This commit is contained in:
2025-02-19 16:17:08 +01:00
commit 8bc6932e36
223 changed files with 63668 additions and 0 deletions

13
src/main.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdbool.h>
#include "testlib.h"
#ifndef MAIN_MESSAGE
#define MAIN_MESSAGE "Hello from main!"
#endif
int main() {
printf("%s\n", MAIN_MESSAGE);
print_message();
return 0;
}