1    package geneticalgorithm;
2    public class Client {
3        public static void main(String[] args) {
4            java.awt.EventQueue.invokeLater(new Runnable() {
5                public void run() {
6                    new GUI().setVisible(true);
7                }
8            });     
9        }
10   }