Sunday 2 February 2014

Hello world Application in F#

In this post we are going to see how to create the Hello World Application in F#. F# is a Functional Programming along with object oriented. Open means refer the System.


F# Code:


#light

open System

let a = 1
let b = 2
let c = a + b
Console.WriteLine "Hello World"
Console.WriteLine(c)
Console.Read()

Output:
   Hello World
   3

From this post you can learn how to create the Hello World sample Application.

No comments:

Post a Comment