/a-tour-of-cpp

Accompanying repo to A Tour of C++ book.

Primary LanguageC++

Compiling

You can compile C++ source code to an executable using C++20 with the following command:

g++ -std=c++20 -o <output_binary> <input_files.cpp>