Last active
October 12, 2015 00:37
-
-
Save justcoding121/3943897 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*/ | |
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