Possible Duplicate:
What’s a good book for learning F#?

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?

link|improve this question

feedback

closed as exact duplicate by gnovice, George Stocker, Bill the Lizard Jan 19 '10 at 21:52

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

9 Answers

up vote 10 down vote accepted

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#

Edit 2: Functional Programming for the Real World is now (jan 2010) published...

link|improve this answer
Also remember the update of Expert F#, The Definitive Guide to F#: apress.com/book/view/9781430224310 – MichaelGG Nov 2 '09 at 22:51
FP for the Real World is already available... I have a copy on my desk:) – Steve Haigh Feb 12 '10 at 13:05
@Steve Haigh: I actually added that information as "Edit 2" February the 4th... :) – Johan Kullbom Feb 12 '10 at 13:28
Oops. Sorry, so you did. – Steve Haigh Feb 12 '10 at 13:30
feedback

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|improve this answer
Unfortunately, the site says that F# in Action won't be published :( – Dmitri Nesteruk Feb 5 '11 at 19:54
feedback

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

Expert F#

If you just want to skim stuff

Foundations of F#

link|improve this answer
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 '09 at 10:52
Sounds great! (15) – RCIX Oct 29 '09 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 '09 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 '09 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 '09 at 13:27
show 4 more comments
feedback

alt text

This last one is just for laughing :-)

link|improve this answer
that's good! that's really good! – RCIX Nov 1 '09 at 6:29
feedback

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|improve this answer
feedback

Another F# book, popping out above the snow: Professional F# 1.0

I think it aims to attract Japanese developers (a general passion for trains exists in Japan :P).

alt text

link|improve this answer
An English description is available on Amazon (from the shameless self promotion dept). amazon.com/Professional-F-1-0-Ted-Neward/dp/047052801X – Rick Minerich Jan 19 '10 at 1:20
feedback

All,

I found a web-based book called The F# Survival Guide. It's a very good introduction to both functional programming and the core F# language features. It's at http://www.ctocorner.com/fsharp/book.

link|improve this answer
feedback

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|improve this answer
Kinda tough to shell out for it without seeing what's inside. A sample chapter would sure help things :) – Dmitri Nesteruk Feb 5 '11 at 19:55
feedback

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 standard 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 have the functional legs to stand on switch to F#.

link|improve this answer
feedback

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