jed_fox1’s avatarjed_fox1’s Twitter Archive — № 781

  1. …in reply to @buildsghost
    @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.