Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 562 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 562 Bytes

test

Programming tips

This repository contains several somewhat arbitrary programming hints for C++. Most examples require C++14 or C++17, which is properly supported by most compilers.

Just have a look at the source code in src. You don't have to build it, but if you want, run something like:

mkdir build
cd build
cmake ..
cmake --build .

Reading the source is nice, but you learn more if you try it yourself.