Practice question from Immutability & Expressions
What operator is used for mutation in F#?
let mutable x = 10
x ____ 15Answer
<-
Explanation
The '<-' operator (left arrow) is used for mutation in F#. It's distinct from '=' which is used for binding and comparison. This visual distinction makes mutation explicit in the code.