Skip to content

Instantly share code, notes, and snippets.

@up1
Created March 31, 2015 04:59
Show Gist options
  • Save up1/1c0425ef5fd3ce6559cc to your computer and use it in GitHub Desktop.
Save up1/1c0425ef5fd3ce6559cc to your computer and use it in GitHub Desktop.
Java 9
value class Point {
int x;
int y;
Point(int x, int y) { this.x = x; this.y = y }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment