blob: 813995c79aad398211508f34ab23da671af8a39d [file] [log] [blame]
#include <fstream>
int main (int argc, const char * argv[]) {
std::ofstream outStream ( "test.txt" );
outStream << "Flasm" << std::endl; /* good place to put a breakpoint */
return 0;
}