diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-05-05 18:09:27 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-05-05 18:09:27 -0500 |
commit | 3ec668ac415d2d92b28e658b17d8932d0cbe2b3b (patch) | |
tree | 7bfb32b5b0d5731e9d9468809b3b0cdd1e744201 /c/README.md | |
download | learn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.tar.gz learn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.tar.bz2 learn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.zip |
initial commit
Diffstat (limited to 'c/README.md')
-rw-r--r-- | c/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/c/README.md b/c/README.md new file mode 100644 index 0000000..d89410b --- /dev/null +++ b/c/README.md @@ -0,0 +1,17 @@ +# Learn C + +This is my personal repository of files for learning the C programming language. + +## Building + +In order to build files on macOS, run the following command: + +```sh +cc hello_world.c -o hello_world +``` + +Once compiled, they can be executed: + +```sh +./hello_world +``` |