APL/APL2.1/TP04/Segment/TestSegment.java

8 lines
184 B
Java
Raw Normal View History

2022-02-15 11:26:26 +01:00
public class TestSegment {
public static void main(String[] args) {
Segment s = new Segment(0, 10, 10, 0);
Segment s2 = new Segment(0, 10, 10, 0);
2022-03-07 17:26:31 +01:00
2022-02-15 11:26:26 +01:00
}
}