New article about deciding whether to use 'let' or 'var' when declaring Swift struct properties! 😀

https://www.swiftbysundell.com/articles/let-vs-var-for-swift-struct-properties

Deciding between ‘let’ and ‘var’ for Swift struct properties | Swift by Sundell

Does marking a given Swift struct property as either ‘let’ or ‘var’ simply determine its mutability, or is there more to it? Let’s explore!

Swift by Sundell
@johnsundell I used to declare properties with `var` for basically the same reason you highlighted. Nowadays, I use `let` for properties that should never be mutated, like identifiers, just to make it clear when looking at the type which ones can be mutated.
@kristoffer So exactly the same as my approach, then 👍