Skip to content

Instantly share code, notes, and snippets.

@stevenchou1130
Last active December 11, 2020 03:17
Show Gist options
  • Save stevenchou1130/4e9d4e754918887c9ec0e110d585c070 to your computer and use it in GitHub Desktop.
Save stevenchou1130/4e9d4e754918887c9ec0e110d585c070 to your computer and use it in GitHub Desktop.
struct Sam: Engineer, Swiftable {
let team: Team
let isKnowSwift: Bool
}
let sam = Sam(team: .android, isKnowSwift: true)
print("Sam can develop iOS: \(sam.canDevelopiOS)")
// Sam can develop iOS: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment