Created
August 21, 2018 13:00
-
-
Save RaimundasR/f199f74885534321f9a7029ec94e18e3 to your computer and use it in GitHub Desktop.
ss
This file contains hidden or 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 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