What is the error in this code?
extension String {
var firstLetter: Character = "c" {
didSet {
print("new value")
}
}
}
What is the error in this code?
extension String {
var firstLetter: Character = "c" {
didSet {
print("new value")
}
}
}