Use `?.let`, not `.let`
# getting-started
c
Use
?.let
, not
.let
s
Hey, just realized that and deleted the question. My bad! thanks!
Alright! For those who wanted to know the question, it was
Copy code
val x :ArrayList<String>? = null

    x?.get(0).let { print("What is happening?") }

    print(x)
was resulting the String being printed