F# language - hints for newbie - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T00:35:07Z http://stackoverflow.com/feeds/question/36294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36294/f-language-hints-for-newbie 9 F# language - hints for newbie ila 2008-08-30T19:42:24Z 2008-10-19T03:02:06Z <p>Looks like here in StackOveflow there is a group of <strong>F#</strong> enthusiasts. </p> <p>I'd like to know better this language, so, apart from the <a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">functional programming theory</a>, can you point me to the better starting points to start using the F# language? I mean, tutorials, how-tos, but first of all working samples to have the chance to start doing something and enjoy the language.</p> <p>Thanks a lot</p> <p>Andrea</p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/36337#36337 1 Answer by Alexandru Nedelcu for F# language - hints for newbie Alexandru Nedelcu 2008-08-30T20:54:27Z 2008-08-30T20:54:27Z <p>Check out the <a href="http://msdn.microsoft.com/en-gb/fsharp/default.aspx" rel="nofollow">F# Developer Center</a>. There is also <a href="http://cs.hubfs.net/forums/default.aspx" rel="nofollow">hubFS</a>, a forum dedicated to F#.</p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/36369#36369 4 Answer by vextasy for F# language - hints for newbie vextasy 2008-08-30T21:45:55Z 2008-08-30T21:45:55Z <p>Without doubt, you should purchase Don Syme's excellent book "Expert F#". The book is very well written and is suitable for both beginners and experts alike. In it, you'll find both introductory material and much more challenging material too. At nearly 600 pages it is good value for money.</p> <p>I found that it taught me a lot of useful techniques for writing more functional C# as well as providing all the reference material I needed to get started writing Windows hosted F# applications. </p> <p>The book is published by Apress and has an accompanying web site at: <a href="http://www.expert-fsharp.com/default.aspx" rel="nofollow">http://www.expert-fsharp.com/default.aspx</a></p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/36393#36393 16 Answer by kronoz for F# language - hints for newbie kronoz 2008-08-30T22:09:05Z 2008-08-30T22:09:05Z <p>Not to whore myself horribly but I wrote a couple F# overview posts on my blog <a href="http://www.codegrunt.co.uk/blog/?p=58" rel="nofollow">here</a> and <a href="http://www.codegrunt.co.uk/blog/?p=81" rel="nofollow">here</a>. Chris Smith (guy on the F# team at MS) has an article called 'F# in 20 minutes' - <a href="http://blogs.msdn.com/chrsmith/archive/2008/05/02/f-in-20-minutes-part-i.aspx" rel="nofollow">part 1</a> and <a href="http://blogs.msdn.com/chrsmith/archive/2008/05/09/f-in-20-minutes-part-ii.aspx" rel="nofollow">part 2</a>.</p> <p>Note you have to be careful as the latest CTP of F# (version 1.9.6.0) has some seriously breaking changes compared to previous versions, so some examples/tutorials out there might not work without modification.</p> <p>Here's a quick run-down of some cool stuff, maybe I can give you a few hints here myself which are clearly <em>very</em> brief and probably not great but hopefully gives you something to play with!:-</p> <p>First note - most examples on the internet will assume 'lightweight syntax' is turned on. To achieve this use the following line of code:-</p> <pre><code>#light </code></pre> <p>This prevents you from having to insert certain keywords that are present for OCaml compatibility and also having to terminate each line with semicolons. Note that using this syntax means indentation defines scope. This will become clear in later examples, all of which rely on lightweight syntax being switched on.</p> <p>If you're using the interactive mode you have to terminate all statements with double semi-colons, for example:-</p> <pre><code> &gt; #light;; &gt; let f x y = x + y;; val f : int -&gt; int -&gt; int &gt; f 1 2;; val it : int = 3 </code></pre> <p>Note that interactive mode returns a 'val' result after each line. This gives important information about the definitions we are making, for example 'val f : int -> int -> int' indicates that a function which takes two ints returns an int.</p> <p>Note that only in interactive do we need to terminate lines with semi-colons, when actually defining F# code we are free of that :-)</p> <p>You define functions using the 'let' keyword. This is probably the most important keyword in all of F# and you'll be using it a lot. For example:-</p> <pre><code>let sumStuff x y = x + y let sumStuffTuple (x, y) = x + y </code></pre> <p>We can call these functions thus:-</p> <pre><code>sumStuff 1 2 3 sumStuffTuple (1, 2) 3 </code></pre> <p>Note there are two different ways of defining functions here - you can either separate parameters by whitespace or specify parameters in 'tuples' (i.e. values in parentheses separated by commas). The difference is that we can use 'partial function application' to obtain functions which take less than the required parameters using the first approach, and not with the second. E.g.:-</p> <pre><code>let sumStuff1 = sumStuff 1 sumStuff 2 3 </code></pre> <p>Note we are obtaining a function from the expression 'sumStuff 1'. When we can pass around functions just as easily as data that is referred to as the language having 'first class functions', this is a fundamental part of any functional language such as F#.</p> <p>Pattern matching is pretty darn cool, it's basically like a switch statement on steroids (yeah I nicked that phrase from another F#-ist :-). You can do stuff like:-</p> <pre><code>let someThing x = match x with | 0 -&gt; "zero" | 1 -&gt; "one" | 2 -&gt; "two" | x when x &lt; 0 -&gt; "negative = " + x.ToString() | _ when x%2 = 0 -&gt; "greater than two but even" | _ -&gt; "greater than two but odd" </code></pre> <p>Note we use the '_' symbol when we want to match on something but the expression we are returning does not depend on the input.</p> <p>We can abbreviate pattern matching using if, elif, and else statements as required:-</p> <pre><code>let negEvenOdd x = if x &lt; 0 then "neg" elif x % 2 = 0 then "even" else "odd" </code></pre> <p>F# lists (which are implemented as linked lists underneath) can be manipulated thus:-</p> <pre><code>let l1 = [1;2;3] l1.[0] 1 let l2 = [1 .. 10] List.length l2 10 let squares = [for i in 1..10 -&gt; i * i] squares [1; 4; 9; 16; 25; 36; 49; 64; 81; 100] let square x = x * x;; let squares2 = List.map square [1..10] squares2 [1; 4; 9; 16; 25; 36; 49; 64; 81; 100] let evenSquares = List.filter (fun x -&gt; x % 2 = 0) squares evenSqares [4; 16; 36; 64; 100] </code></pre> <p>Note the List.map function 'maps' the square function on to the list from 1 to 10, i.e. applies the function to each element. List.filter 'filters' a list by only returning values in the list that pass the predicate function provided. Also note the 'fun x -> f' syntax - this is the F# lambda.</p> <p>Note that throughout we have not defined any types - the F# compiler/interpreter 'infers' types, i.e. works out what you want from usage. For example:-</p> <pre><code>let f x = "hi " + x </code></pre> <p>Here the compiler/interpreter will determine x is a string since you're performing an operation which requires x to be a string. It also determines the return type will be string as well.</p> <p>When there is ambiguity the compiler makes assumptions, for example:-</p> <pre><code>let f x y = x + y </code></pre> <p>Here x and y could be a number of types, but the compiler defaults to int. If you want to define types you can using type annotation:-</p> <pre><code>let f (x:string) y = x + y </code></pre> <p>Also note that we have had to enclose x:string in parentheses, we often have to do this to separate parts of a function definition.</p> <p>Two really useful and heavily used operators in F# are the pipe forward and function composition operators |> and >> respectively.</p> <p>We define |> thus:-</p> <pre><code>let (|&gt;) x f = f x </code></pre> <p>Note that you can define operators in F#, this is pretty cool :-).</p> <p>This allows you to write things in a clearer way, e.g.:-</p> <pre><code>[1..10] |&gt; List.map (fun x -&gt; x * x) |&gt; List.filter (fun x -&gt; x % 2 = 0) </code></pre> <p>Will allow you to obtain the first 10 even squares. That is clearer than:-</p> <pre><code>List.filter (fun x -&gt; x % 2 = 0) (List.map (fun x -&gt; x * x) [1..10]) </code></pre> <p>Well, at least I think so :-)</p> <p>Function composition defined by the >> operator is defined as follows:-</p> <pre><code>let (&gt;&gt;) f g x = g(f(x)) </code></pre> <p>I.e. you forward-pipe an operation only the parameter of the first function remains unspecified. This is useful as you can do the following:-</p> <pre><code>let mapFilter = List.map (fun x -&gt; x * x) &gt;&gt; List.filter (fun x -&gt; x % 2 = 0) </code></pre> <p>Here mapFilter will accept a list an input and return the list filtered as before. It's an abbreviated version of:-</p> <pre><code>let mapFilter = l |&gt; List.map (fun x -&gt; x * x) |&gt; List.filter (fun x -&gt; x % 2 = 0) </code></pre> <p>If we want to write recursive functions we have to define the function as recursive by placing 'rec' after the let. Examples below.</p> <p><em>Some cool stuff:-</em></p> <p><strong>Factorial</strong></p> <pre><code>let rec fact x = if x &lt;= 1 then 1 else x * fact (x-1) </code></pre> <p><strong>nth Fibonacci Number</strong></p> <pre><code>let rec fib n = if n &lt;= 1 then n else fib (n-1) + fib (n-2) </code></pre> <p><strong>FizzBuzz</strong></p> <pre><code>let (/%) x y = x % y = 0 let fb = function | x when x /% 15 -&gt; "FizzBuzz" | x when x /% 3 -&gt; "Fizz" | x when x /% 5 -&gt; "Buzz" | x -&gt; x.ToString() [1..100] |&gt; List.map (fb &gt;&gt; printfn "%s") </code></pre> <p>Anyway that's a <em>very</em> brief overview, hopefully it helps a little!!</p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/36847#36847 2 Answer by ila for F# language - hints for newbie ila 2008-08-31T13:00:26Z 2008-08-31T13:00:26Z <p>@kronoz - well thanks a lot for your long answer, that's a really good place to start from. I'll follow your advices, and look for the book @vecstasy mentioned. </p> <p>now, let me go coding :-)</p> <pre><code>let thanksalot = "thanks a lot" printfn "%s" (thanksalot);; </code></pre> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/60865#60865 1 Answer by Michiel Borkent for F# language - hints for newbie Michiel Borkent 2008-09-13T20:54:10Z 2008-09-13T20:54:10Z <p>If you have the current CTP release in Visual Studio it lets you create a F# Tutorial project, which gives you a Tutorial.fs, exactly containing what it's name suggests. </p> <p>That tutorial also points to a larger collection of <a href="http://code.msdn.microsoft.com/fsharpsamples" rel="nofollow">F# examples at Microsoft</a>.</p> <p>Also, there is an F# samples project going on at <a href="http://www.codeplex.com/fsharpsamples" rel="nofollow">CodePlex</a>.</p> <p>Hope this helps,</p> <p>Michiel</p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/105722#105722 2 Answer by Alexandre Brisebois for F# language - hints for newbie Alexandre Brisebois 2008-09-19T21:19:51Z 2008-09-19T21:19:51Z <p>I've been reading <a href="http://www.manning.com/petricek/" rel="nofollow">Real World Functional Programming</a></p> <p>With examples in F# and C# by:Tomas Petricek</p> <p>So far I find it very good at teaching F# concepts by showing the implementations in C# on the side. Great for OO Programmers.</p> http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/215931#215931 1 Answer by Jon Harrop for F# language - hints for newbie Jon Harrop 2008-10-19T03:02:06Z 2008-10-19T03:02:06Z <p>The first chapter of my book F# for Scientists is freely available <a href="http://media.wiley.com/product_data/excerpt/16/04702421/0470242116.pdf" rel="nofollow">here</a>. We have a series of free F# toy programs <a href="http://www.ffconsultancy.com/dotnet/fsharp/" rel="nofollow">here</a>. The first article from our F#.NET Journal is freely available <a href="http://www.ffconsultancy.com/products/fsharp_journal/free/introduction.html" rel="nofollow">here</a>.</p>