commit 2da08c9e614b9d6b12f5de971fff6def8ac89731 Author: Ana Date: Thu Sep 17 09:18:10 2026 -0600 test of a C example 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; +} + 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 +```