Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created September 27, 2022 20:13
Show Gist options
  • Save s1monw1/0d6bc930d184cda613d59919feb6005b to your computer and use it in GitHub Desktop.
Save s1monw1/0d6bc930d184cda613d59919feb6005b to your computer and use it in GitHub Desktop.
public final class MyClass {
private final int i;
public final int getI() {
return this.i;
}
public MyClass(int i) {
this.i = i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment