summaryrefslogtreecommitdiffstats
path: root/2022-2/L1/mitsuo/main.cpp
blob: 66b5790bc7011159d03aca48b2684b544ce69725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Objetivos:
 * - <iostream>
 * - <iomanip>
 * - Redireccionamiento stdin y stdout
 * - operadores << y >> 
 * - No arreglos ("puro archivo")
 * - No lectura de C.  (E.g., get(), getline(), unget())
 */

#include "fun.h"

int main(int argc, char *argv[]) 
{
    readRecordsWriteReport();
    return 0;
}