Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftstructs vs classesSingle-choice MCQ

A struct with a stored property is held in a `let` constant. What happens?

struct Counter { var value = 0 } let c = Counter() c.value = 1