Skip to content

Instantly share code, notes, and snippets.

@chingovan
Created March 15, 2017 05:51
Show Gist options
  • Save chingovan/946c8025b49cd5f4da0a37e7a96be07a to your computer and use it in GitHub Desktop.
Save chingovan/946c8025b49cd5f4da0a37e7a96be07a to your computer and use it in GitHub Desktop.
public class Point {
private int x;
public Point() {
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public String toString() {
return x+"";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment