What is printed when this code is executed?
let dbl = Double.init("5a") print(dbl ?? ".asString()")
five
5a
.asString()
5 Reference:
5