commit 471f69af7df032c8be91f43ed42a6aee378f3f85 Author: Gerardo Marx Date: Thu Sep 17 09:18:11 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..d8d6a04 --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include + +int main(void){ + printf("Hello from Raspberry Pi!\n"); + return 0; +} +