12 lines
261 B
Java
12 lines
261 B
Java
public class Start {
|
|
public static void main(String[] args) {
|
|
javax.swing.SwingUtilities.invokeLater(new Runnable() {
|
|
// implements the Runnable interface with a run method
|
|
@Override
|
|
public void run() {
|
|
new MyFrame();
|
|
}
|
|
});
|
|
}
|
|
}
|