F Sharp (programming language): Difference between revisions

Content deleted Content added
add an example and some more links
Line 1:
{{wrongtitle|title=F# programming language}}
 
 
'''F#''' (pronounced F sharp) is a mixed [[functional programming|functional]] and [[Imperative programming|imperative]] [[programming language]] for the [[Microsoft .NET]] platform. F# was developed by Don Syme at [[Microsoft]] Research, and has a core language that is similar to that of the [[Ocaml]] language (itself a member of the [[ML programming language]] family).
Line 11 ⟶ 10:
 
F# is in the beta stage of development. (June 2005).
 
An example follows:
 
<pre>
let x = 3 + (4 * 5)
let res = (if x = 23 then "correct" else "incorrect")
</pre>
 
== External Links ==
 
* [http://research.microsoft.com/projects/ilx/fsharp.aspx Microsoft Research's website for F#]
** [http://research.microsoft.com/projects/ilx/fsharp-manual/default.aspx F# Manual]
 
{{compu-lang-stub}}