RosettaCodeData/Task/Copy-a-string/F-Sharp/copy-a-string.fs

7 lines
269 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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