let stringList = [“one”; “two”; “three”]
How do I print stringList in F#?
let stringList = [“one”, “two”, “three”]
let function2() =
for i in 2 .. 3 do
printf ” ”
printfn “i”
function2()
I was expecting: “one”, “two”, “three”
New contributor
user3933556 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.