Files
linux-packaging-mono/external/api-doc-tools/mdoc/mdoc.Test/mdoc.Test.FSharp/ReferenceCells.fs

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