Skip to content

Instantly share code, notes, and snippets.

@stevenchou1130
Last active December 11, 2020 03:17
Show Gist options
  • Save stevenchou1130/4ef76c7bd3ce817171ec2a5f1affe9be to your computer and use it in GitHub Desktop.
Save stevenchou1130/4ef76c7bd3ce817171ec2a5f1affe9be to your computer and use it in GitHub Desktop.
protocol Engineer: CustomStringConvertible {
var team: Team { get }
var canDevelopiOS: Bool { get }
}
extension CustomStringConvertible where Self: Engineer {
var description: String {
switch team {
case .android:
return "I belong to Android team."
case .iOS:
return "I belong to iOS team."
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment