snippet

Anonymous
swift
11/10/2021 10:30 AM
92 B
17
Indexable

let y: String? = nil


guard let x = y else {
    return
}

print(x)
Editor is loading...