diff options
| author | David Faulkner <[email protected]> | 2026-08-05 17:11:24 -0500 |
|---|---|---|
| committer | David Faulkner <[email protected]> | 2026-08-05 17:11:24 -0500 |
| commit | b1bbc3e55f358d52b539da4c84b0f992b606c745 (patch) | |
| tree | e597ac3d2d0c26cedc43eebf47b748f32f130c09 | |
Initial commit: Add main.c and README
| -rw-r--r-- | README.md | 9 | ||||
| -rw-r--r-- | main.c | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2098744 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Hello World in C + +A minimalist C application hosted on `git.davo.co`. + +## Building & Running + +```bash +gcc -Wall -Wextra -std=c23 main.c -o hello +./hello @@ -0,0 +1,6 @@ +#include "stdio.h" + +int main(void) { + printf("Hello, World!\n"); + return 0; +} |
