blob: 3c97e01844e3ef99e7330d94e50a2bf5452ff370 [file] [log] [blame]
#include <iostream.h>
#include <iterator.h>
#include <string>
ostream_iterator<string> oo(cout);
int main()
{
*oo = "Hello, ";
++oo;
*oo = "world!\n";
}