Skip to content

Instantly share code, notes, and snippets.

@justcoding121
Last active October 12, 2015 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justcoding121/3943897 to your computer and use it in GitHub Desktop.
Save justcoding121/3943897 to your computer and use it in GitHub Desktop.
*/
package aiproject;
import java.io.IOException;
public class AIproject {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
java.awt.EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
new UIForm().setVisible(true);
} catch (IOException ex) {
// Logger.getLogger(AI1.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment