Skip to content

Instantly share code, notes, and snippets.

@uzilan
Created December 22, 2021 13:33
Show Gist options
  • Save uzilan/48ddd1a80c7afde86f4d2a262c7a5122 to your computer and use it in GitHub Desktop.
Save uzilan/48ddd1a80c7afde86f4d2a262c7a5122 to your computer and use it in GitHub Desktop.
package some.system;
public class ImmutableCoords {
public final double x;
public final double y;
public ImmutableCoords(final double x, final double 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