show/hide this revision's text 16 added 314 characters in body

Entry point is here -> Microsoft F# Developer Center

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)

Quick Links:

Blogs

Videos:

Hello World Samples:

Sample 1, Sample 2, Sample 3, Sample 4, Fibonacci Numbers

Good Books:

Code Sample:

// 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)

Note that there is also a "getting started" small sample as a 'tutorial' project template inside Visual Studio.

Tools needed:

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 free download, linked from the F# download page).

show/hide this revision's text 15 Spelling mistakes corrected

Entry point is here -> Microsoft F# Developer Center

Download and install the latest verion version of F#, create new F# console applicatoin application program in Visual Studio and play with it (for example, by generating Fibonacci numbers)

Quick Links:

Blogs

Videos:

Hello World Samples:

Sample 1, Sample 2, Sample 3, Sample 4, Fibonacci Numbers

Good Books:

Code Sample:

// 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)

Note that there is also a "getting started" small sample as a 'tutorial' project template inside Visual Studio.

Tools needed:

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 free download, linked from the F# download page).

show/hide this revision's text 14 updates for latest release
  • Download the F# May 2009 CTP (release info)
  • MSDN docs for F# in VS2010 Beta1
  • F# library docs
  • Brian McNamara
  • Don Syme (talk and demo of F#)
  • Luke Hoban on Channel9
  • // tell that we wonna want to use light syntax#light  // this is the default in May 2009 update, so no longer needed

    Tools needed:

    Update:

    FYI, A new release of F# just came out today (May 20) (release info), after some links have time to propagate later today, I'll update the links above. -- Brian

    show/hide this revision's text 13 fyi about new release
    show/hide this revision's text 12 added 109 characters in body
    show/hide this revision's text 11 added 258 characters in body
    show/hide this revision's text 10 added 28 characters in body; [made Community Wiki]
    show/hide this revision's text 9 Added info
    show/hide this revision's text 8 added note about 'tutorial' template and VS shell
    show/hide this revision's text 7 added 74 characters in body
    show/hide this revision's text 6 added 114 characters in body
    show/hide this revision's text 5 added 718 characters in body
    show/hide this revision's text 4 added 21 characters in body
    show/hide this revision's text 3 added 563 characters in body
    show/hide this revision's text 2 added 96 characters in body
    show/hide this revision's text 1