Chapter 20, Bronze Challenge Solution

Here’s my solution for the Bronze Challenge which was to revisit Ch 19

extension Department: CustomStringConvertible {
    var description: String {
        return "Department (\(self.name))"
    }
}