Google News
logo
F# - Interview Questions
What are Reference cells in F#?
Reference cells refer to memory locations. It allows you to create mutable values. F# uses immutable data structure by default.
 
Example :
let refVariable = ref 50  
printf "%d" refVariable.Value
Advertisement