Swift menetapkan dan mengakses nilai dari opsional

let someValue:Int? = 5
print(someValue)
print(someValue!)
SAMER SAEID