RosettaCodeData/Task/String-prepend/F-Sharp/string-prepend.fs

4 lines
59 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let mutable s = "world!"
s <- "Hello, " + s
printfn "%s" s