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

What value does this function return?

func compute() -> Int { var result = 10 defer { result += 5 } return result } print(compute())