summaryrefslogtreecommitdiffstats
path: root/2023-2/L0/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to '2023-2/L0/main.cpp')
-rw-r--r--2023-2/L0/main.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/2023-2/L0/main.cpp b/2023-2/L0/main.cpp
deleted file mode 100644
index fc150df..0000000
--- a/2023-2/L0/main.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// Just an example of I/O with files for INF281
-// Compile with: clang++ -g main.cpp fun.cpp && ./a.out
-// Mitsuo 2023-08-17
-
-#include <iostream>
-#include <fstream> // archivos
-
-#include "fun.h"
-
-using namespace std;
-
-int main(int argc, char ** argv) {
- ifstream in("Libros.csv");
- if (!in) {
- cerr << "Error: No se pudo abrir archivo\n";
- }
- ofstream out("reporte.txt");
- leer_datos_escribir_reporte(in, out);
- return 0;
-}
-