default c program

This commit is contained in:
Thomas Klaehn
2019-09-08 07:36:59 +02:00
commit 47dd3676bb
10 changed files with 199259 additions and 0 deletions

9
src/main.c Normal file
View File

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