CJCoding With Joseph

Accept an Interface as a Parameter

The IMessage interface declares string GetText(), and the Hello class already returns Hello from it. Complete the Printer.Format method so it returns the message's text followed by an exclamation mark. Format must accept any IMessage. Do NOT write a Main method.

For a Hello message the program prints:
Hello!

Expected Output:

Hello!
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.