You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. package figures;
  2. class Main {
  3. public static void main(String [] args) {
  4. System.out.println("> starting figures. . . " + 0);
  5. // Figure fig = new Figure();
  6. Point p1 = new Point(2, 2);
  7. p1.setX(10);
  8. p1.setX(20);
  9. System.out.println("> p1.x: " + p1.getX());
  10. // Point p2 = fig.makePoint(4, 4);
  11. // System.out.println("> finished.");
  12. }
  13. }