Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Created January 2, 2016 21:50
Show Gist options
  • Save AnnaBoro/11763c7291f4a6547ef6 to your computer and use it in GitHub Desktop.
Save AnnaBoro/11763c7291f4a6547ef6 to your computer and use it in GitHub Desktop.
JFrame1
package lesson5_8;
import javax.swing.*;
public class JJFrame {
public static void main(String[] args) {
JFrame f = new JFrame();
f.setBounds(300, 100, 800, 600);
f.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment