basic csv writing
This commit is contained in:
parent
c8148275ef
commit
68feeaae5c
1 changed files with 11 additions and 1 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Reference in a new issue