What output will be produced by the code below?
class Starship {
var type: String
var age: Int
}
let serenity = Starship(type: "Firefly", age: 24)
print(serenity.type)
What output will be produced by the code below?
class Starship {
var type: String
var age: Int
}
let serenity = Starship(type: "Firefly", age: 24)
print(serenity.type)
© 2017 QuizBucket.org