import javax.swing.*;

public class HelloSwing {
	public static void main(String argv[]) {
		JFrame f = new JFrame ("Simple Swing Window");
		f.getContentPane().add(new JLabel("Hello Swing"));
		f.setSize(400,100);
		f.setLocation(30,50);
		f.setVisible(true);
		System.out.print("main() finished");
	} //main()
} //class HelloSwing
