C Sharp (C#) - Interfaces
Find the error in this code snippet:
interface IPrinter { void Print(); }
class Document : IPrinter { void Print() { Console.WriteLine("Printing"); } }