From 571836c9a31565805ff1b874d4b6efb186acfd29 Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Thu, 17 Sep 2026 09:18:06 -0600 Subject: [PATCH] testo of a C example --- Readme.md | 6 ++++++ main.c | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 Readme.md create mode 100644 main.c 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..1a61918 --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + printf("Hello fags!\n"); + return 0; +}