Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftif let and guard letSingle-choice MCQ

What is printed by this `if let` shadowing example?

let value: Int? = 10 if let value = value { print(value + 1) }