From 387642ff612de7d0ebf09410cd8e39a4765c877a Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Fri, 18 Aug 2023 01:57:48 -0500 Subject: Fix naming. Add leading 0 to lab names --- 2023-2/L0/main.cpp | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 2023-2/L0/main.cpp (limited to '2023-2/L0/main.cpp') 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 -#include // 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; -} - -- cgit v1.2.3