1. Buat Project di Sublime Text dengan nama file java : simple_form
- import javax.swing.JFrame;
- import javax.swing.JLabel;
- public class simple_form {
- public void start(){
- JFrame f = new JFrame("Form Title");
- JLabel l=new JLabel ("SMK TI AIAIRLANGA-RPL");
- f.add(l);
- f.setSize(400,400);
- f.setVisible(true);
- }
- public static void main(String args[]) {
- new simple_form().start();
- }
- }
Run, good luck
No comments:
Post a Comment