superlint/test/linters/cpp/cpp_bad_01.cpp

15 lines
267 B
C++
Raw Normal View History

#include <iostream>
#include <fstream>
using namespace std;
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();
}