Skip to content

Instantly share code, notes, and snippets.

@sourabhrai235
Last active September 30, 2020 06:48
class Employee{
Address address;
Employee(){
this.address = "India";
}
}
class Main{
public static void main(String args[]){
Employee emp1 = new Employee();
Employee emp2 = new Employee();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment