10 lines
194 B
Forth
Raw Normal View History

module ReferenceCells
// Declare a reference.
let refVar = ref 6
// Change the value referred to by the reference.
refVar := 50
// Dereference by using the ! operator.
printfn "%d" !refVar