Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created January 29, 2017 09:50
Embed
What would you like to do?
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