The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/*
	g++ -I/usr/include/boost-1_33_1 -o hello hello.cpp
*/
#include <iostream>
#include <boost/format.hpp>

int main(){

	using namespace boost;
	std::cout << format("[%1%, %2%!]") % "Hello" % "world" << std::endl;

	return 0;
}