Getting started with F# - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:58:11Zhttp://stackoverflow.com/feeds/question/734525http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/734525/getting-started-with-f39Getting started with F#Ian Quigley2009-04-09T14:39:19Z2009-12-19T20:42:34Z
<p>What's a good way to get into F# programming?</p>
<p>What's a good "Hello world" example and what simple examples can show me why I want to use it over C#.</p>
<p>Also what tools do I need? I have WindowsXP, Visual Studio 2008 etc.</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734536#73453670Answer by Koistya Navin for Getting started with F#Koistya Navin2009-04-09T14:42:16Z2009-12-14T04:41:33Z<h3>Entry point is here -> <a href="http://msdn.microsoft.com/en-us/fsharp/" rel="nofollow">Microsoft F# Developer Center</a></h3>
<p>Download and install the latest version of F#, create new F# console application program in Visual Studio and play with it (for example, by generating Fibonacci numbers)</p>
<h3>Quick Links:</h3>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b55f0532-ac3c-4106-918c-5586a953a7da" rel="nofollow">Download the F# October 2009 CTP</a>(<a href="http://blogs.msdn.com/dsyme/archive/2009/10/19/visual-studio-2010-beta2-with-f-is-now-available-plus-matching-f-ctp-update-for-vs2008.aspx" rel="nofollow">release info</a>)</li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7bb32f32-9fac-4f34-ad56-b0bda130cf00" rel="nofollow">Download the F# May 2009 CTP</a> (<a href="http://blogs.msdn.com/dsyme/archive/2009/05/20/visual-studio-2010-beta1-with-f-is-now-available-plus-matching-f-ctp-update-for-vs2008.aspx" rel="nofollow">release info</a>)</li>
<li><a href="http://msdn.microsoft.com/en-us/fsharp/cc835246.aspx" rel="nofollow">Learn F#</a></li>
<li><a href="http://research.microsoft.com/fsharp/manual/spec2.aspx" rel="nofollow">The F# Language Specification</a> (<a href="http://research.microsoft.com/fsharp/manual/spec.pdf" rel="nofollow">PDF</a>)</li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd233154%28VS.100%29.aspx" rel="nofollow">MSDN docs for F# in VS2010 Beta2</a></li>
<li><a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/namespaces.html" rel="nofollow">F# library docs</a></li>
<li><a href="http://research.microsoft.com/fsharp/fsharp.aspx" rel="nofollow">F# Microsoft Research Site</a></li>
<li><a href="http://en.wikibooks.org/wiki/Programming%3AF%5FSharp" rel="nofollow">F# Programming</a> at Wikibooks (there are lots of samples)</li>
<li><a href="http://en.wikipedia.org/wiki/F%5FSharp%5Fprogramming%5Flanguage" rel="nofollow">F# Programming Language</a> at Wikipedia</li>
<li><a href="http://www.codeplex.com/site/search?TagName=F%23" rel="nofollow">F# Projects at CodePlex</a></li>
<li><a href="http://code.msdn.microsoft.com/Project/ProjectDirectory.aspx?TagName=F%23" rel="nofollow">F# Code Samples at MSDN</a></li>
<li><a href="http://cs.hubfs.net/forums/" rel="nofollow">F# Forums</a></li>
<li><a href="http://feeds.feedburner.com/planet%5Ffsharp" rel="nofollow">F# Community Blogs</a></li>
</ul>
<h3>Blogs</h3>
<ul>
<li><a href="http://blogs.msdn.com/dsyme/" rel="nofollow">Don Syme</a></li>
<li><a href="http://strangelights.com/blog/" rel="nofollow">Robert Pickering</a></li>
<li><a href="http://cs.hubfs.net/blogs/default.aspx" rel="nofollow">hubFS</a></li>
<li><a href="http://fsharpnews.blogspot.com/" rel="nofollow">F# News</a></li>
<li><a href="http://tomasp.net/blog/" rel="nofollow">Tomas Petricek</a></li>
<li><a href="http://lorgonblog.spaces.live.com/blog/" rel="nofollow">Brian McNamara</a></li>
</ul>
<h3>Videos:</h3>
<ul>
<li><a href="http://channel9.msdn.com/pdc2008/TL11/" rel="nofollow">An Introduction to Microsoft F#</a></li>
<li><a href="http://channel9.msdn.com/posts/martinesmann/Don-Syme-FSharp-and-functional-programming-in-NET/" rel="nofollow">Don Syme (talk and demo of F#)</a></li>
<li><a href="http://channel9.msdn.com/posts/Dan/C9-Bytes-Data-Visualization-and-FSharp-with-Luke-Hoban/" rel="nofollow">C9 Bytes: Data Visualization and F# with Luke Hoban</a></li>
<li><a href="http://channel9.msdn.com/posts/Charles/Don-Syme-Whats-new-in-F-Asynchronous-Workflows-and-welcome-to-the-NET-family/" rel="nofollow">Don Syme: What's new in F# - Asynchronous Workflows (and welcome to the .NET family!)</a></li>
<li><a href="http://channel9.msdn.com/posts/Charles/Luke-Hoban-Latest-version-of-F-Released-Whats-the-story-Whats-next/" rel="nofollow">Luke Hoban on Channel9</a></li>
<li><a href="http://channel9.msdn.com/Search/Default.aspx?Term=F%23&Type=c9" rel="nofollow">More...</a></li>
</ul>
<h3>Hello World Samples:</h3>
<p><a href="http://fsharpdotnet.com/" rel="nofollow">Sample 1</a>, <a href="http://www.fsharphelp.com/HelloWorld.aspx" rel="nofollow">Sample 2</a>, <a href="http://sharp-gamedev.blogspot.com/2008/09/hello-world.html" rel="nofollow">Sample 3</a>, <a href="http://techiethings.blogspot.com/2009/02/f-hello-world.html" rel="nofollow">Sample 4</a>, <a href="http://mbishop.esoteriq.org/weblog/?p=7" rel="nofollow">Fibonacci Numbers</a></p>
<h3>Good Books:</h3>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/1590597575" rel="nofollow">Foundations of F# (Expert's Voice in .Net)</a> by Robert Pickering (May, 2007)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1590598504" rel="nofollow">Expert F# (Expert's Voice in .Net)</a> by Don Syme (Dec, 2007)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1430223898" rel="nofollow">Beginning F#</a> by Robert Pickering (coming)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0470242116" rel="nofollow">F# For Scientists</a> by Dr Jon Harrop (Aug, 2008)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1430224312" rel="nofollow">The Definitive Guide to F#</a> by Don Syme (coming)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1933988924" rel="nofollow">Real World Functional Programming</a> by Tomas Petricek </li>
<li><a href="http://oreilly.com/catalog/9780596153656" rel="nofollow">Programming F#</a> by Chris Smith (Oct, 2009)</li>
</ul>
<h3>Code Sample:</h3>
<pre><code>// tell that we want to use light syntax
#light // this is the default in May 2009 update, so no longer needed
// C# :
// using System;
open System
// say hello wrold
printfn "Hello, World! What is your name, user?"
// C# :
// var name = Console.ReadLine();
let name = Console.ReadLine()
// C# :
// public delegate void SaySomethingDelegate(string toWho);
// SaySomethingDelegatesayHello =
// who => Console.WriteLine("Hello, {0}!", who);
let sayHello who = printfn "Hello, %s!" who
// hi
sayHello name
// you can using .NET Framework classes and methods:
let sayHelloDotNet who = Console.WriteLine(
"Hello from F# via .Net, " + name + "!")
// hello again!
sayHelloDotNet name
// let's count Fibonacci
let rec fib i =
match i with
| 1 | 2 -> 1
| i -> fib(i-1) + fib(i-2)
// result
printfn "%i" (fib 20)
</code></pre>
<p>Note that there is also a "getting started" small sample as a 'tutorial' project template inside Visual Studio.</p>
<h3>Tools needed:</h3>
<p>If you want F# integrated into Visual Studio, then you either need a non-express version of VS2008, or the VS2008 shell (integrated mode; this component is also a <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=40646580-97FA-4698-B65F-620D4B4B1ED7" rel="nofollow">free download</a>, linked from the F# download page).</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734542#7345420Answer by leppie for Getting started with F#leppie2009-04-09T14:43:48Z2009-04-09T14:43:48Z<p>There is a terrible introduction video for F# on DNRtv. That should turn any C# coder off completely.</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734564#73456410Answer by Juliet for Getting started with F#Juliet2009-04-09T14:50:34Z2009-04-09T14:50:34Z<p><a href="http://en.wikibooks.org/wiki/Programming:F_Sharp" rel="nofollow">F# on Wikibooks</a> is probably the best online resource for beginners wanting to learn F#. Plus its free (as in "free beer"). Feel free to fix all of my spelling/grammar errors as you go through it :)</p>
<blockquote>
<p>What's a good "Hello world" example
and what simple examples can show me
why I want to use it over C#.</p>
</blockquote>
<p>If you don't already know F#, its really hard to post an example comparing F# and C# together and say "ah ha! Now you see why this language is so much better" since you don't really know the syntax. But, for what its worth, I wrote <a href="http://stackoverflow.com/questions/694651/what-task-is-best-done-in-a-functional-programming-style/694822#694822">this post</a> describing simple symbolic logic in F# and C#, <a href="http://en.wikibooks.org/wiki/F_Sharp_Programming/Lexing_and_Parsing" rel="nofollow">this simple SQL parser</a> in 150 lines of code, and <a href="http://en.wikibooks.org/wiki/F_Sharp_Programming/MailboxProcessor" rel="nofollow">a prime number sieve using mailbox processors</a>. Its not possible to write any of these samples in C# in even a quarter of the lines of code.</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734651#7346514Answer by thinkhard for Getting started with F#thinkhard2009-04-09T15:08:19Z2009-04-09T15:08:19Z<p>A good way to get into F# is to just start doing things. There are many web resources to begin learning F# from scratch. There are 3 published books on the topic as well.</p>
<p><a href="http://msdn.microsoft.com/en-us/fsharp/default.aspx" rel="nofollow">Microsoft F# Developer Center</a> contains many links to get you started. A good forum for questions dealing specifically with F# is <a href="http://cs.hubfs.net/forums/default.aspx" rel="nofollow">HubFS</a></p>
<p><a href="http://blogs.msdn.com/chrsmith/" rel="nofollow">Chris Smith</a> has an excellent series on F# comparing C# implementations with their F# equivalents (dare I say betters?)</p>
<p><a href="http://blogs.msdn.com/dsyme/" rel="nofollow">Don Syme</a>, the father of F# has a weblog on the subject as well as a book out entitled <a href="http://books.google.com/books?id=NcrMkjVxahMC&printsec=frontcover&dq=Expert%2BF%23&ei=QwveSYffNY%5FCzASrjoi6Dg" rel="nofollow">Expert F#</a></p>
<p><a href="http://www.ffconsultancy.com/" rel="nofollow">Jon Harrop</a> has a book entitled <a href="http://books.google.com/books?id=wu0yHwAACAAJ&dq=F%23%2Bfor%2BScientists&ei=AAzeSdkng8jIBP2q-KsO" rel="nofollow">F# for Scientists</a></p>
<p><a href="http://strangelights.com/blog/default.aspx" rel="nofollow">Robert Pickering</a> is the author of <a href="http://books.google.com/books?id=n1DEBdl%5FoloC&pg=PP1&dq=Foundations%2Bof%2BF%23&ei=eQveSaPsL4PIyAT9qvirDg" rel="nofollow">Foundations of F#</a> with its second edition available for pre-order on Amazon.com, it has been renamed to <a href="http://rads.stackoverflow.com/amzn/click/1430223898" rel="nofollow">Beginning F#</a> in this edition to differentiate between the other books available.</p>
<p>As you requested:</p>
<pre><code> #light
printf "hello world"
</code></pre>
<p>This does little to elucidate the powerful features available in the language. F# is an amalgamation of imperative, functional, and object-oriented paradigms... allowing you to smoothly transition between these approaches when crafting code. As far as I can tell F# is gaining momentum, it is slated to become a 1st class .NET language and is built into Visual Studio 2010. I run the September 2008 CTP release of F# from my windows workstations and FSharp-1.9.4.19 on linux with mono. I for one am investing a considerable precentage of my time to mastering the language.</p>
<p>As to why you would want to use it over C#. Thats a very good question. There are differences in the way F# compiles and C# compiles, reference some other questions on stackoverflow for good answers. I've generally noticed many naively claim that F# is simply "syntactic sugar", this is only half true.</p>
<p>"You obviously cannot write code in either language that compiles to the same bytecode because F# generates ILX (e.g. tail calls) and C# does not. F# also makes extensive use of CIL metadata for things that C# does not support (e.g. inlining). – Jon Harrop (Mar 14 at 7:06)"</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734672#7346723Answer by Tab for Getting started with F#Tab2009-04-09T15:13:24Z2009-04-09T15:13:24Z<p>I won't duplicate all the great info above but I wanted to added a link to this session with <strong>Luca Bolognese</strong>. His presentation was informative, engaging and cleared up a lot of misconceptions I had about F# - certainly one of many great resources.</p>
<p><a href="http://channel9.msdn.com/pdc2008/TL11/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL11/</a></p>
http://stackoverflow.com/questions/734525/getting-started-with-f/734952#7349525Answer by David Klein for Getting started with F#David Klein2009-04-09T16:25:39Z2009-04-09T16:25:39Z<p>I'd also recommend checking out <a href="http://manning.com/petricek/" rel="nofollow">Real World Functional Programming</a> from Tomas Petricek and Jon Skeet. (Early Access Edition already available)
It covers various problems and shows how to tackle them efficiently in a functional way. Most of the Code is in F# but also in C# so you can compare which you like better/you think fits better.</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/737637#7376370Answer by flatline for Getting started with F#flatline2009-04-10T13:37:05Z2009-04-10T13:37:05Z<p>Navin's post outlines the options pretty well. I'm just beginning to learn the language but can offer some reflections from my personal experience.</p>
<p>I couldn't get through <em>Foundations/Beginning</em>, it may be a good reference but it reads like a reference and glosses over too much, early on. I'm enjoying <em>Expert F#</em> so far, it's a much better read IMO and the later chapters have some substance to them.</p>
<p>If you have little or no experience with functional programming, I recommend studying the subject more generally. If you want to make full use of what F# offers, over imperative C# coding, <em>Structure and Interpretation of Computer Programs</em> is a classic text that goes over a lot of FP concepts (I'd recommend just watching the videos). It uses Scheme as a teaching tool but it's dead simple, the concepts are easily portable to any other language that supports functional paradigms (including C#).</p>
<p>For more functional programming, Project Euler is a good place to actually apply pure functional programming concepts, since they are particularly well-suited to mathematical applications. I like this site if I'm trying out the syntax of a new language, it gives you something to work on, which is often the hardest part of learning something for practical use outside of work.</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/759788#7597880Answer by CKoenig for Getting started with F#CKoenig2009-04-17T09:47:35Z2009-04-17T09:47:35Z<p>I still belive Expert F# is the best publication avaiable to get into F# and it covers almost everything.</p>
<p>The only problem is: like every newer "learn programming" book it don't contain a single excercise - so you will need to find something to do for yourself.</p>
<p>I recommend starting to play with Lists, the |> operator etc. and looking at the <a href="http://msdn.microsoft.com/en-gb/fsharp/default.aspx" rel="nofollow">F# Developer Center</a> (it more or less a collection of good blogs/sources and a good forum)</p>
http://stackoverflow.com/questions/734525/getting-started-with-f/1724252#17242521Answer by mloskot for Getting started with F#mloskot2009-11-12T18:09:51Z2009-11-12T18:09:51Z<p>I also recommend <a href="http://tomasp.net/articles/fsharp-i-introduction/article.pdf" rel="nofollow">F# Language Overview</a> (PDF) written by <a href="http://tomasp.net/blog" rel="nofollow">Tomáš Petříček</a> It is the best F# paper I've read from short articles. Its first paragraph says:</p>
<blockquote>
<p>This text is based on a short overview
of the F# language (...) The goal of
this article is to introduce all the
features in a single (relatively
short) text, which means that
understanding of a few advanced topics
discussed later in the text may
require some additional knowledge or
previous experience with functional
programming.</p>
</blockquote>
http://stackoverflow.com/questions/734525/getting-started-with-f/1934073#19340730Answer by John for Getting started with F#John2009-12-19T20:42:34Z2009-12-19T20:42:34Z<p>For my money (free!), I am liking the The F# Survival Guide. It's a solid introduction to functional programming via F#. It lives at <a href="http://www.ctocorner.com/fsharp/book" rel="nofollow">http://www.ctocorner.com/fsharp/book</a>.</p>