Skip to content

Instantly share code, notes, and snippets.

View SamarthBhogre's full-sized avatar
🎯
Focusing

SB1 SamarthBhogre

🎯
Focusing
View GitHub Profile
class Person {
private int person_id;
private String name;
private int age;
public Person(int person_id, String name, int age){
this.person_id = person_id;
this.name = name;
this.age = age;
}