import java.io.*;

import streams.Googler;


/**
 * A driver for the Googler class.
 *
 * This version makes it difficult/impossible to prompt the user
 * for input.
 *
 * @version 1.0
 * @author  Prof. David Bernstein, James Madison University
 */
public class GooglerDriver1
{
    /**
     * The entry point
     *
     * @param args   The command-line arguments
     */
    public static void main(String[] args)
    {
	DataInputStream   dis;
	Googler           googler;


	dis = new DataInputStream(System.in);
	googler = new Googler(dis);
        googler.start();
    }


}
