Created
January 29, 2017 09:50
-
-
Save cyrilletuzi/5acbe7ecba026ed9d00c07e9d3794693 to your computer and use it in GitHub Desktop.
This file contains 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
public class Editor extends User { | |
public Editor(String firstName) { | |
super(firstName); | |
} | |
public void sayHello() { | |
super.sayHello(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment