Notes and examples for my 2012 UTOS Conference talk
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Stephen McQuay 0c51b752da Merge ../cpp11 11 years ago
.hgignore updated ignore file 12 years ago
Makefile Added an example of parallel pi. 11 years ago
README.rst updated make file to be more automatic 12 years ago
auto.cc removed warn failures on compile 12 years ago
constexpr.cc finished product 12 years ago
ilists.cc updated for presentation 11 years ago
init.cc updated for presentation 11 years ago
init_new.cc updated for presentation 11 years ago
lambda.cc updated for presentation 11 years ago
loops.cc updated for presentation 11 years ago
notes.rst added sources and a quote to notes 11 years ago
pi.cc Added an example of parallel pi. 11 years ago
regex1.cc Added some regex examples. 11 years ago
regex2.cc Added some regex examples. 11 years ago
stress.zsh updated stress test output 11 years ago
thread.cc added sources and a quote to notes 11 years ago
thread2.cc added sources and a quote to notes 11 years ago
tuple.cc final tuple example 11 years ago

README.rst

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

========================================
GRANDPA, I DONT 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!