What is true of this code?
let name: String?
Only non-empty string variables can be stored in name. Reference: The Swift Programming Language: Language Guide: The Basics: Optionals
name
Optional values cannot be let constants.
let
name can hold either a string or nil value.
name can hold only a string value.