A simple C++ program that prints "Hello, World!" to the console build with CMake and ninja.
# Clone the repository
git clone https://github.com/YOUR_USERNAME/helloworld.git
cd helloworld
# Build with CLANG (`export CXX=g++` for GCC)
export CXX=clang++
cmake -G "Ninja" -B build source/
ninja -C build
# Run
./build/helloworld