Skip to content

Instantly share code, notes, and snippets.

@MithraTalluri
Created September 18, 2019 07:09
Show Gist options
  • Save MithraTalluri/392a75ae1382fc860e7ffba27662f4bc to your computer and use it in GitHub Desktop.
Save MithraTalluri/392a75ae1382fc860e7ffba27662f4bc to your computer and use it in GitHub Desktop.
public class Person {
private final String name;
private final int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment