basic csv writing

This commit is contained in:
scho4077 2015-09-09 16:53:25 -05:00
parent c8148275ef
commit 68feeaae5c

View file

@ -1 +1,11 @@
//
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream csv;
csv.open ("testing.csv");
csv << "Writing this to a file.\n";
csv.close();
return 0;
}