Skip to content

Instantly share code, notes, and snippets.

@tremaineeto
Created April 6, 2021 06:44
Show Gist options
  • Save tremaineeto/381ddd83607663fa0f8affd398d357c4 to your computer and use it in GitHub Desktop.
Save tremaineeto/381ddd83607663fa0f8affd398d357c4 to your computer and use it in GitHub Desktop.
public final class Dog {
private final String name;
public Dog(String name) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment