Skip to content

Instantly share code, notes, and snippets.

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