Slide 15
Slide 15 text
aligatr
One Identity, Multiple Abilities
class TimeLord: Alien, TimeTraveler, Flyer {
init() {
super.init(name: "I'm the Doctor", planet: "Gallifrey")
}
}
let doctorWho = TimeLord()
doctorWho.travel(to: Date(timeIntervalSince1970: 1303484520))
// )* Apr 22, 2011, 5:02 PM +,
doctorWho.fly()