CJCoding With Joseph

Implement a Simple Interface

The interface IGreeter declares a Greet() method. Complete the EnglishGreeter class so Greet() returns the text Hello, World!. The tester stores the object 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.