Initial commit

This commit is contained in:
Stephan Rehfeld 2025-10-21 15:05:34 +02:00
commit c30da96170
2 changed files with 11 additions and 0 deletions

3
Readme.md Normal file
View File

@ -0,0 +1,3 @@
# Info
Das ist ein kleines Demo-Projekt.

8
main.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello Wrld");
return EXIT_SUCCESS;
}