36 lines
908 B
ReStructuredText
36 lines
908 B
ReStructuredText
========================================
|
||
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!
|