test of C example

error-catching
Gerardo Marx 1 week ago
commit 471f69af7d

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

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