vote up 2 vote down star
1

DUPLICATES

http://stackoverflow.com/questions/62302/whats-a-good-book-for-learning-f

http://stackoverflow.com/questions/304496/f-programming-books

F# looks cool and i'd like to read a book on it so i can see if it's worth using in my spare time, anyone got a good recommendation?

flag

7 Answers

vote up 4 vote down check

If you want to really dive deep in to it then:

Expert F#

If you just want to skim stuff

Foundations of F#

link|flag
1  
I'm undecided about Foundations of F# - I've read it and whilst it introduces the reader to all of the fundamentals of working with F# in OO, imperative and functional styles of programming, I felt myself wanting to see more "pure" functional approaches to problems and best practices in the book. I guess given that this is the beginner book, that might be too much to ask so am looking at Expert F# next. This is just my opinion though, of course :) – Russ Cam Oct 29 at 10:52
Sounds great! (15) – RCIX Oct 29 at 10:53
Just to add, Rob Pickering is working on a new version of Foundations of F# to be known as "Beginning F#" due out in May 2010 I believe. – Russ Cam Oct 29 at 10:54
@Russ Cam. You are right "foundations of F#" is a bit nerdy/theorotical, that's why I mentioned "If you just want to skim stuff". If you want to get through the practical and real applications of F# then maybe wanna checkout "F# for scientists". I hav'nt read it though. – Suraj Chandran Oct 29 at 11:01
What about the new version of Expert F# (Called the definitive guide to F#)? Amazon keeps pushing back the release date. – Dave Berk Oct 29 at 13:27
show 4 more comments
vote up -1 vote down

Let me jump in with my 2 cents. Please be careful in separation of learning the concepts of functional programming from specifics of the language implementation. F# is such a different animal so far apart form any other language in the .NET world.

The problem here is that you can do standadr OOP in F#, this is extremely important for compatibility of the F# with the rest of .NET, but if this all you do you will miss so much.

In other words if you are new for functional programming start learning concepts with something more consistent - i.e. Haskell and once you the functional legs to stand on switch to F#.

link|flag
vote up 1 vote down

Currently reading Oreilly's Programming F#. This is the first book I have read on F# and I find it a well written thorough treatment of the language.

http://www.amazon.com/s/ref=nb%5Fss?url=search-alias%3Daps&field-keywords=programming+f%23&x=0&y=0

Chris Smith, the author, has a good blog on F# here. http://blogs.msdn.com/chrsmith/

link|flag
vote up 1 vote down

For my money, "F# for Technical Computing". Harrop's breath and depth of understanding is only surpassed by his clarity. A must have for serious F#UN.

link|flag
vote up 2 vote down

alt text

This last one is just for laughing :-)

link|flag
that's good! that's really good! – RCIX Nov 1 at 6:29
vote up 5 vote down

As far as I know only five books on F# has been published: Foundations of F#, Expert F#, F# for Scientists, Programming F# and F# for Technical Computing

Foundations of F# Expert F# # for Scientists Programming F# # for Technical Computing

Another two is on the way: Functional Programming for the Real World and F# in Action

Functional Programming for the Real World F# in Action

Edit: Revised versions of both Expert F# (The Definitive Guide to F#) and Foundations of F# (Beginning F#) is also on the way... (thanks MichaelGG)

The Definitive Guide to F# Beginning F#

link|flag
Also remember the update of Expert F#, The Definitive Guide to F#: apress.com/book/view/9781430224310 – MichaelGG Nov 2 at 22:51
vote up 4 vote down

I think Functional Programming for the Real World is an excellent book for getting to grips with F# particularly if you already have a background in C# as it concentrates on the things which really make functional programming different. The book covers both C# and F#. It's not out yet, but the early access ebook is almost complete.

F# in Action also looks promising, but there isn't enough yet to be able to recommend it yet. Both of Suraj's suggestions are also good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.