Hey there 
import Foundation
struct Profile: CustomStringConvertible {
let name = "Gary Tokman"
var description: String {
"""
\(name)\n
I am a software engineer focused on iOS development.
Working on teams with project managers, developers,
and designers, I have built mobile applications and
SDKs focused on excellent user experience and design.
I am looking to work in a collaborative environment
where I can develop products that improve people's lives.\n
"""
}
enum Skill: String, CaseIterable {
case swift, objc, uIKit, swiftUI
case testing, git, fastlane
case vim, rN, combine
}
func proficient(in skills: [Skill] = Skill.allCases) -> String {
skills
.map(\.rawValue)
.map(\.capitalized)
.map { "- " + $0 + "\n" }
.reduce("Skills: \n", +)
}
}
// Paste into a playground!
let profile = Profile()
print(profile.description)
print(profile.proficient())
