let myOptional: Int? = 10 | |
if let myInt = myOptional { | |
print("myInt has a value of \(myInt).") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
let myOptional: Int? = 10 | |
if let myInt = myOptional { | |
print("myInt has a value of \(myInt).") | |
} |