/learning-c-11

as the name suggests this repo contains examples of c++11 code

Primary LanguageC++

C++11 learning bits

Compiling

To compile just one example file and to avoid issues with language version compatibility use -std=c++11 parameter, i.e.:

    c++ -std=c++11 02-variables.cpp -o 02-variables

To compile all files, simply run:

    make binaries