1
vote
What’s a good book for learning F#?
I actually learned F# initially by way of Developing Applications With Objective Caml, which is available for free[1] online. It's not 100% applicable, of course, but since you're just sta …
2
votes
System.Collections.Generic List and F#
match Seq.tryfind ((=) "") caseList with
None -> print_string "didn't find it"
| Some s -> printfn "found it: %s" s
…
7
votes
F# XML parsing
let doc = new XmlDocument() in
doc.LoadXml xml;
doc.SelectNodes "/EmailList/Email/text()"
|> Seq.cast<XmlNode>
|> Seq.map (fun node -> node.Value)
…
1
vote
F# - Should I learn with or without #light?
Because I learned F# from an OCaml book (and I use an OCaml mode for Emacs to edit F# code), I prefer to use the "heavy" syntax. I have worked with #light code, and of course most of the F# example …
