This repository contains the source code for "The C++ Programming Language" mdBook. This book is available online or can be built locally and served in your browser.
To build this book you need mdBook a tool for creating books with Markdown. mdBook can be installed using Cargo - Rust's package manager.
cargo install mdbook --vers "0.4.52" --lockedYou can build this book you must clone this repository using Git. You can then build it and even serve it to localhost to view in your browser. The serve command will produce a localhost you can view.
$ git clone https://github.com/oraqlle/cpp-book.git
$ cd cpp-book
# Build ...
$ mdbook build
# ... or serve build and serve locally
$ mdbook serve --open