How do I go about getting into F# programming?
What are some good starter samples to learn the language, or learn about some of its advantages over other languages?
What tools do I need (e.g. Windows, Visual Studio, ...)?
How do I go about getting into F# programming?
What are some good starter samples to learn the language, or learn about some of its advantages over other languages?
What tools do I need (e.g. Windows, Visual Studio, ...)?
Official entry point is here: Microsoft F# Developer Center
For a quick taste, consider trying F# in your browser (Silverlight). (contains interactive tutorial walkthroughs)
Start by watching videos and presentations (BTW, An Introduction to Microsoft F# by Luca Bolognese is still one of the best presentations on the subject). Then read the following two must-read books:
and in addition to that...
Q&A
Blogging/publishing
Meetup Groups
Visual Studio:
MonoDevelop:
The way I learned F# was to go through the following 3 steps.
First, I went through the introduction on the Try F# website which gives a good (but light) interactive introduction to the syntax and style of the language.
Next, to get a feel for actually solving problems in the language, I began solving some of the puzzles on the Project Euler site. I solved about the first ten problems and after each successful problem, I looked up an alternative F# implementation here. This gave a good feeling for how to work with sequences and using recursion and just generally becoming comfortable with the syntax.
Finally, I read the truly excellent 30-point guide Why use F# on http://fsharpforfunandprofit.com/. It takes you step-by-step through all of the major parts of the language describing how you can take advantage of them - with an eye towards C# developers. After that I encourage you to look around for other resources on the website, they are all very well written and highly insightful.
After completing these steps you should be ready to begin creating a real project in F#.
Brian already put together a great list, but I humbly submit my own small contribution to the rich ecosystem of F# learning material, the F# Koans- a simple, fun, and interactive way to learn the F# language through testing.