diff --git a/csvfragment.cpp b/csvfragment.cpp index 00f4ac0..8a6f5fe 100644 --- a/csvfragment.cpp +++ b/csvfragment.cpp @@ -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; }