Cleaner inits - ExpressibleBy... protocols
Sometimes structures or classes we create in code can be easily expressed by built-in Swift types. Consider the following code: struct Person { let name: String } let ana = Person(name: "Ana")I created simple