commit bc9f532899dcdbfb4e0eb6cdae6f76f5911911b9 Author: Angelus Vela Date: Thu Sep 17 09:18:17 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..b4ae688 --- /dev/null +++ b/main.c @@ -0,0 +1,6 @@ +#include + +int main (void){ + printf("Hello from Rasperry Pi!\n"); + return 0; +}