Как настроить анонимную функцию для переменной в Swift

let name = "Abhishek Bagela"

var getName: String {
 return name
}
Tame Termite