This commit is contained in:
Emmanuel Srivastava
2025-02-11 14:46:08 +01:00
parent 9340a71d29
commit 5b86f6f95b
9 changed files with 29 additions and 36 deletions

View File

@@ -0,0 +1,16 @@
import javax.swing.*;
import java.awt.*;
public class MainFormes{
public static void main(String[] args){
JFrame frame = new JFrame("Formes");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Formes truc = new Formes();
frame.add(truc);
frame.setSize(500,500);
frame.setLocation(500,250);
frame.setVisible(true);
}
}