3 [[http://www.boost.org/|Boost]]: [[wp>Boost]] - Portable C++ source libraries
5 ===== How to install Boost =====
13 ===== How to build a simple program using Boost =====
16 #include <boost/lambda/lambda.hpp>
23 using namespace boost::lambda;
24 typedef std::istream_iterator<int> in;
27 in(std::cin), in(), std::cout << (_1 * 3) << " " );
31 ===== How to compile using Boost =====
34 $ gcc boost.cpp -o boost