This commit is contained in:
2024-04-02 17:54:40 +03:00
parent 8c21959c4f
commit c7f448b091
6 changed files with 321 additions and 0 deletions

7
src/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
printf("Hewo world :3");
return 0;
}