Created
March 31, 2015 04:59
-
-
Save up1/1c0425ef5fd3ce6559cc to your computer and use it in GitHub Desktop.
Java 9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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