superlint/.automation/test/cpp/cpp_good_01.cpp

17 lines
289 B
C++
Raw Normal View History

// Copyright 2021 GitHub
#include <iostream>
#include <fstream>
using std::string;
int main() {
// Create and open a text file
ofstream MyFile("filename.txt");
// Write to the file
MyFile << "Files can be tricky, but it is fun enough!";
// Close the file
MyFile.close();
}