-
@buildsghost Swift lets you do either case let .Some(value) or case .Some(let value) I think the difference is that you can specify the variables to be immutable or mutable (let/var) separately in the latter syntax, and they’re all the same in the former.