프로토콜 (Protocols)

프로퍼티 요구사항 (Property Requirements)

protocol FullyNamed {
	var fullName: String { get }
}
struct Person: FullyNamed {
	var fullName: String
}