Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftdeferSingle-choice MCQ

What does the function return when called as `read("data")`?

func read(_ name: String) -> String { var status = "opened" defer { status = "closed" } return status }