What is the real difference between let and var in swift?
The first and the usual answer is: The let is immutable, the var is mutable
Here's a breakdown of the key differences between let and var, grouped by aspects:
Usage
Performance
Safety and t...