/*
 * @(#)Quick_sorting.java 1.0 05/02/24
 *
 * You can modify the template of this file in the
 * directory ..\JCreator\Templates\Template_1\Project_Name.java
 *
 * You can also create your own project template by making a new
 * folder in the directory ..\JCreator\Template\. Use the other
 * templates as examples.
 *
 */
package myprojects.quick_sorting;

import java.awt.*;
import java.awt.event.*;

class Quick_sorting extends Frame {
	
	public Quick_sorting() {
		addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				dispose();
				System.exit(0);
			}
		});
	}

	public static void main(String args[]) {
		System.out.println("Starting Quick_sorting...");
		Quick_sorting mainFrame = new Quick_sorting();
		mainFrame.setSize(400, 400);
		mainFrame.setTitle("Quick_sorting");
		mainFrame.setVisible(true);
	}
}
