slides/Point.java
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 23 Apr 2020 14:49:54 +0100
changeset 334 841727e27252
parent 32 45557ad18ea6
permissions -rw-r--r--
updated

public class Point {
  private final int x, y;
 
  public Point(int x, int y) {
    this.x = x;
    this.y = y;
  }
 
  public int x() { return x; }
 
  public int y() { return y; }
}