@ -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;
}