Why is it like this in **Swift**: ``` optional?.no...
# getting-started
b
Why is it like this in Swift:
Copy code
optional?.nonNullable.something()
But like this in Kotlin?
Copy code
optional?.nonNullable?.something()