Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/A.java Secret

Created August 4, 2020 22:28
Show Gist options
  • Save kasramp/b41e5b83595dbda7c1759be6a90f5400 to your computer and use it in GitHub Desktop.
Save kasramp/b41e5b83595dbda7c1759be6a90f5400 to your computer and use it in GitHub Desktop.
public class A {
private int x;
public void setX(int x) {
this.x = x;
}
public int getX() {
return this.x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment