main loop

This commit is contained in:
Andre Heber
2023-11-25 13:09:16 +01:00
commit 0e3d59f447
9 changed files with 100 additions and 0 deletions

6
target.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char* argv[]) {
printf("Hello, world!\n");
return 0;
}