Closed iamcarbon closed 7 years ago
Make mutability explicit through the mutable keyword.
let i = 0; i += 1; // error let mutable i = 0; i += 1; // ok
Keeping var for now
Make mutability explicit through the mutable keyword.