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:56:40 -05:00

11 lines
187 B
C++

#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream csv;
csv.open ("testing.csv");
csv << "Writing, this, to, a, file";
csv.close();
return 0;
}