Rust is used for low-level programming and CLI apps.
Install rustup and select the toolchain for C compiler (gcc or msvc).
cargo new <name>
cd <name>
cargo add <dep1> <dep2>
cargo add <dep3> <dep4> --dev # dev dependencies
cargo run
cargo build
cargo doc
It outputs in /target directory and must be manually copied to /docs for GitHub Pages.