package StringDraw; import javax.swing.JFrame; public class HelloWorldTest { public static void main(String[] args) { HelloWorldFrame frame = new HelloWorldFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }