add CI workflow and initial main.c file with a simple main function
Some checks failed
First CI / build (push) Has been cancelled

This commit is contained in:
Jakub Nowosad
2025-12-09 00:45:29 +01:00
parent ecee700966
commit 40222b22c2
2 changed files with 11 additions and 2 deletions

7
main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
pritnf("Halo, welt!");
return 0;
}