test of C example

error-catching
Ignacio Abundez 1 week ago
commit 646fd8a485

@ -0,0 +1,6 @@
# Introduction
How to compile
```bash
gcc main.c -o hello
```

@ -0,0 +1,8 @@
#include <stdio.h>
int main (void){
printf("Hello from Raspberry Pi!\n");
return 0;
}
Loading…
Cancel
Save