/*Orion Lawlor's Simple STL Examples, olawlor@acm.org
Shows how to use std::istringstream.
*/
#include <iostream>
#include <fstream>

int main()
{
	std::ofstream f("/tmp/foo.dat");
	f<<"Yo!\n";
	f<<117;
	
	return 0;
}
/*<@>
<@> ******** Program output: ********
<@> */
