import QuicksortStrings;
import InputSorter;

/**
 * A test of QuicksortStrings.  Reads standard input and sorts
 * to standard output.  Created as part of the answer key to
 * assignment 7 of Grinnell College's CSC152 99S.
 * 
 * @author Samuel A. Rebelsky
 * @version 1.0 of March 1999
 */
public class QuicksortInput {
  public static void main(String[] args) {
    QuicksortStrings sorter = new QuicksortStrings();
    InputSorter helper = new InputSorter();
    helper.sortInput(sorter);
  } // main(String[])
} // QuicksortInput

