Skip to content

Instantly share code, notes, and snippets.

@RaimundasR
Created August 21, 2018 13:00
Show Gist options
  • Save RaimundasR/f199f74885534321f9a7029ec94e18e3 to your computer and use it in GitHub Desktop.
Save RaimundasR/f199f74885534321f9a7029ec94e18e3 to your computer and use it in GitHub Desktop.
ss
package LogSystem;
import javax.swing.*;
import java.awt.*;
public class Main {
public static void main(String[] args) {
JFrame screen = new JFrame();
screen.setTitle("LogSystem");
screen.setVisible(true);
screen.setSize(500,500);
Button close = new Button();
close.setVisible(true);
close.setSize(20,20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment