No description
Find a file
2025-09-09 22:52:14 -04:00
.vscode Removed unneeded ,. 2025-09-09 22:52:14 -04:00
src Initial commit. 2025-09-09 20:35:13 -04:00
.gitattributes Added README and gitattributes. 2025-09-09 21:26:44 -04:00
.gitignore Initial commit. 2025-09-09 20:35:13 -04:00
meson.build Initial commit. 2025-09-09 20:35:13 -04:00
README.md Added README and gitattributes. 2025-09-09 21:26:44 -04:00

Hello, World!

An open-source C project template for modern development using Git, the LLVM toolchain (Clang compiler, and LLDB debugger), the Meson build system, and VSCodium as an IDE.

Building (command-line interface)

First, create the build directory with the following command:

meson setup build

Note: you only need to do this once to create the initial build directory.

After every code change you'll need to recompile with the following command:

meson compile -C build