Update csvfragment.cpp

This commit is contained in:
scho4077 2015-09-09 16:56:40 -05:00
parent 68feeaae5c
commit ae0b5e5a2a

View file

@ -5,7 +5,7 @@ using namespace std;
int main () {
ofstream csv;
csv.open ("testing.csv");
csv << "Writing this to a file.\n";
csv << "Writing, this, to, a, file";
csv.close();
return 0;
}