First cookbook example for the docs: Hello World in C.

This commit is contained in:
Avery Pennarun 2018-11-24 14:36:02 -05:00
commit d663c9b67d
10 changed files with 216 additions and 2 deletions

View file

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