[ create a new paste ] login | about

Link: http://codepad.org/XUwSIVpX    [ raw code | output | fork ]

hecomi - C++, pasted on Jul 21:
1
2
3
4
5
6
7
#include <boost/format.hpp>

int main()
{
   std::cout << boost::format("%1% %2%!")%"Hello"%"World" << std::endl;
   return 0;
}


Output:
1
Hello World!


Create a new paste based on this one


Comments: