Untested C

This commit is contained in:
ilsix 2024-04-04 20:16:41 +02:00
commit 12bb00ed44

6
c/helloworld.c Normal file
View File

@ -0,0 +1,6 @@
#include<stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}