Update csvfragment.cpp
This commit is contained in:
parent
68feeaae5c
commit
ae0b5e5a2a
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ using namespace std;
|
||||||
int main () {
|
int main () {
|
||||||
ofstream csv;
|
ofstream csv;
|
||||||
csv.open ("testing.csv");
|
csv.open ("testing.csv");
|
||||||
csv << "Writing this to a file.\n";
|
csv << "Writing, this, to, a, file";
|
||||||
csv.close();
|
csv.close();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue