RosettaCodeData/Task/Copy-a-string/F-Sharp/copy-a-string.fs
2023-07-01 13:44:08 -04:00

6 lines
269 B
FSharp

let str = "hello"
let additionalReference = str
let deepCopy = System.String.Copy( str )
printfn "%b" <| System.Object.ReferenceEquals( str, additionalReference ) // prints true
printfn "%b" <| System.Object.ReferenceEquals( str, deepCopy ) // prints false