This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/csvfragment.cpp
2015-09-09 16:53:25 -05:00

11 lines
186 B
C++

#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;
}