slides/Point.java
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 06 Mar 2024 18:20:25 +0000
changeset 484 c4561fc667b7
parent 32 45557ad18ea6
permissions -rw-r--r--
test

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; }
}