10 lines
269 B
Java
Raw Normal View History

2022-11-22 08:45:54 +04:00
import javax.swing.*;
public class Program {
public static void main(String[] args) {
2022-11-22 10:13:07 +04:00
FormMap form = new FormMap();
2022-11-22 08:45:54 +04:00
form.setSize(640, 480);
form.setVisible(true);
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}