CJCoding With Joseph
15per day

Implement a Greetable Interface

An interface Greetable is provided with one method: String greet(). Complete the FriendlyPerson class so it implements Greetable.

Requirements:
1. Store the name passed to the constructor.
2. Implement greet() to return "Hi, I'm <name>!".

Do NOT write a main method.

Expected Output:

Hi, I'm Sam!
Topics:
InterfacesClasses
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.