add first examples

This commit is contained in:
2019-11-01 21:40:13 +01:00
commit 7ad3ed17d8
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
/* my first program in C */
printf("Hello, World! \n");
return 0;
}