package cs362practice;

import java.io.IOException;

/** Concatenate the text files named on the command line
 * to standard output.
 * @author Gary T. Leavens
 */
public class Cat {

    /** Run this application.  This method is responsible for calling
     *  the catToStdout method of the class FileCatter, which should be used
     *  to copy the contents of each named argument to standard output.
     *  This method is also responsible for catching any IOExceptions 
     *  that the catToStdout method may throw,
     *  and if it catches them it should print their message to System.err,
     *  preceeded by "Cat: I/O error: " and followed by a newline.
     *  IOExceptions should not cause the program to exit immediately;
     *  instead, each error should be noted, and the program
     *  should continue with the next file (if any).  When the program
     *  has worked on all the files, it should exit with a non-zero
     *  status code if any IOExceptions were encountered.
     * @param args the names of the text files to copy to System.out
     */
    //@ requires args != null && args.length > 0;
    //@ requires \nonnullelements(args);
    public static void main(String[] args) {















    }
}
