/*
 * Main.java
 *
 * This java class is the main java class. Its sole purpose is to retrieve the
 * command line arguments and to pass them to a new instance of "Process", the
 * class responsible for all the processing.
 *
 */
package gratesttask;

import java.io.*;
/**
 *
 * @author Oussama El-Rawas
 */
public class Main {
    
    public Main(){}
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException{
        if (args.length != 2) {
            System.out.println("You need to enter 2 arguments.");
        }
        else {
            Process pro = new Process(args[0], args[1]);
        }
    }
}
