Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kepocnhh/c6744ba56394ff1dddb8c991325eacfe to your computer and use it in GitHub Desktop.
Save kepocnhh/c6744ba56394ff1dddb8c991325eacfe to your computer and use it in GitHub Desktop.
public class PrettyObject
implements Pretty
{
private final int a;
private final int b;
public PrettyObject(int a, int b)
{
this.a = a;
this.b = b;
}
public int getA()
{
return a;
}
public int getB()
{
return b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment