/Employee.java Secret
Last active
September 30, 2020 06:48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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