PIbd-23_Polevoy_S.V._SelfPr.../Program.java
2022-10-25 16:53:45 +04:00

11 lines
278 B
Java

import javax.swing.*;
public class Program {
public static void main(String[] args) {
FormGallery form = new FormGallery();
form.setSize(320, 240);
form.setVisible(true);
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}