From ae0b5e5a2adfa64e153d549c49aab3dc13528413 Mon Sep 17 00:00:00 2001 From: scho4077 Date: Wed, 9 Sep 2015 16:56:40 -0500 Subject: [PATCH] Update csvfragment.cpp --- csvfragment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }