CJCoding With Joseph

Implement a Greeter Interface

The IGreeter interface is already declared with one method, Greet. Complete the Greeter class so its Greet method returns the text Hello, World!. The tester stores a Greeter in an IGreeter variable and prints the result. Do NOT write a Main method.

The program prints:
Hello, World!

Expected Output:

Hello, World!
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.