sm
/
cpp11
1
0
Bifurcation 0
Notes and examples for my 2012 UTOS Conference talk
Aller au fichier
Stephen McQuay 0c51b752da Merge ../cpp11 2012-08-30 09:37:35 -06:00
.hgignore updated ignore file 2012-05-01 17:30:28 -06:00
Makefile Added an example of parallel pi. 2012-08-30 09:31:27 -06:00
README.rst updated make file to be more automatic 2012-05-05 14:14:40 -06:00
auto.cc removed warn failures on compile 2012-05-05 14:54:38 -06:00
constexpr.cc finished product 2012-05-05 13:45:49 -06:00
ilists.cc updated for presentation 2012-05-25 08:17:47 -06:00
init.cc updated for presentation 2012-05-25 08:17:47 -06:00
init_new.cc updated for presentation 2012-05-25 08:17:47 -06:00
lambda.cc updated for presentation 2012-05-25 08:17:47 -06:00
loops.cc updated for presentation 2012-05-25 08:17:47 -06:00
notes.rst added sources and a quote to notes 2012-05-25 10:06:00 -06:00
pi.cc Added an example of parallel pi. 2012-08-30 09:31:27 -06:00
regex1.cc Added some regex examples. 2012-05-25 08:49:38 -06:00
regex2.cc Added some regex examples. 2012-05-25 08:49:38 -06:00
stress.zsh updated stress test output 2012-05-25 08:59:21 -06:00
thread.cc added sources and a quote to notes 2012-05-25 10:06:00 -06:00
thread2.cc added sources and a quote to notes 2012-05-25 10:06:00 -06:00
tuple.cc final tuple example 2012-08-30 09:33:31 -06:00

README.rst

========================================
GRANDPA, I DON’T WANT NONE OF YOUR C++!!
========================================

.. rubric:: Notes and examples for my 2012 UTOS Conference talk

You thought the language was essentially dead, relegated to the slaves who
produce the latest video games; you were wrong!

Last year the latest C++ standard, c++11, was ratified adding many of the
features one would expect from a modern programming language.

Come participate in an overview and example festival of some of the added
features.

Build Instructions
==================

In order to compile the examples, modify the CXXFLAGS in the Makefile and
then run make for each executable. If you want, for example, to build the
asdf.cc file, run::

    make asdf

or to build it all::

    make

Also, you can run it all with the *run* target::

    make run

if it returns 0, then everything went fine.

Enjoy!