Hallo everybody,

I would like to know what is the purpose of the F# language, what are the contexts where it is preferred to other languages and why. For instance, what are typical applications that is convenient to realize with F# rather than with other languages?

I would like to learn another .NET language but I do not know whether it is worth to learn F# or instead move to other languages which are more or less complementary to C#.

Thanks

Francesco

link|improve this question

70% accept rate
possible duplicate of What are the benefits of using C# vs F# or F# vs c#? – cHao Apr 13 '11 at 11:48
feedback

closed as off topic by Oded, duffymo, Mat, Ernest Friedman-Hill, cHao Apr 13 '11 at 11:48

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

up vote 2 down vote accepted

F# is a functional language, so it shines when you understand that style well and have a problem that shows it off. Functional languages decompose problems into functions that operate on data and structures.

C# is an object-oriented language. This family of languages encapsulates data and functions together into software components that usually map to things in the real world and interact by sending messages to each other.

link|improve this answer
feedback

F# is very cool for writing algorithms, and it helps alot in therms of concurrency, also it has great language oriented features so it can be used to create DSLs with little effort and since this is .NET platform those DSLs can be used to generate IL code and cooperate with C# components.

If you want to learn something new F# is a good way to go as it forces you to look at common problems in a different way, making you smarter.

link|improve this answer
feedback

F# is used in WebSharper to generate JavaScript code. You'll receive all the advantages of statically-typed language.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.