Created
September 27, 2022 20:13
-
-
Save s1monw1/0d6bc930d184cda613d59919feb6005b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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