diff --git a/csvfragment.cpp b/csvfragment.cpp index 8337712..00f4ac0 100644 --- a/csvfragment.cpp +++ b/csvfragment.cpp @@ -1 +1,11 @@ -// +#include +#include +using namespace std; + +int main () { + ofstream csv; + csv.open ("testing.csv"); + csv << "Writing this to a file.\n"; + csv.close(); + return 0; +}