commit 646fd8a485ec832b3990826133faf037c8423a21 Author: Ignacio Abundez Date: Thu Sep 17 09:18:27 2026 -0600 test of C example diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..700dd1b --- /dev/null +++ b/Readme.md @@ -0,0 +1,6 @@ +# Introduction +How to compile + +```bash +gcc main.c -o hello +``` diff --git a/main.c b/main.c new file mode 100644 index 0000000..8ec5768 --- /dev/null +++ b/main.c @@ -0,0 +1,8 @@ +#include + +int main (void){ + printf("Hello from Raspberry Pi!\n"); + return 0; +} + +