23 lines
313 B
Java
23 lines
313 B
Java
/*
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
// TODO Auto-generated method stub
|
|
System.out.println("toto");
|
|
}
|
|
|
|
}*/
|
|
|
|
|
|
import windowInterface.MyInterface;
|
|
|
|
|
|
public class Main {
|
|
|
|
|
|
public static void main(String[] args) {
|
|
MyInterface mjf = new MyInterface();
|
|
mjf.setVisible(true);
|
|
}
|
|
|
|
} |