Swift Przypisywanie i dostęp do wartości z opcjonalnie

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