|
16
|
|
|
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).
|
|
|
|
15
|
|
|
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).
|
|
|
|
14
|
|
|
|
|
|
|
|
13
|
|
|
Download and install the latest verion of F#, create new F# console applicatoin 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 wonna use light syntax
#light
// 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).
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
|
|
|
|
12
|
|
|
Download and install the latest verion of F#, create new F# console applicatoin 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 wonna use light syntax
#light
// 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).
|
|
|
|
11
|
|
|
Download and install the latest verion of F#, create new F# console applicatoin 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 wonna use light syntax
#light
// 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).
|
|
|
|
10
|
|
|
After reviewing it.
Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...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 wonna use light syntax
#light
// 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).
|
|
|
|
9
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Blogs
Videos:
Hello World Samples:
Sample 1, Sample 2, Sample 3, Sample 4, Fibonacci Numbers
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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).
|
|
|
|
8
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Videos:
Hello World Samples:
Sample 1, Sample 2, Sample 3, Sample 4, Fibonacci Numbers
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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).
|
|
|
|
7
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Videos:
Hello World Samples:
Sample 1, Sample 2, Sample 3, Sample 4, Fibonacci Numbers
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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)
|
|
|
|
6
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Videos:
Hello World Samples:
Sample 1, Sample 2, Sample 3, Sample 4
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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)
|
|
|
|
5
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Videos:
Hello World Samples:
Sample 1, Sample 2, Sample 3, Sample 4
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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)
|
|
|
|
4
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Hello World Samples:
Sample 1, Sample 2, Sample 3
Good Books:
Code Sample:
// tell that we wonna use light syntax
#light
// 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)
|
|
|
|
3
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Hello World Samples:
Sample 1, Sample 2, Sample 3
Good Books:
|
|
|
|
2
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
Hello World Samples:
Sample 1, Sample 2, Sample 3
|
|
|
|
1
|
|
|
After reviewing it. Download and install the latest verion of F#, create new F# console applicatoin program in Visual Studio and play with it...
Quick Links:
|
|
|