Tagged Questions

F# is a succinct, expressive and efficient functional and object-oriented language for .NET which helps you write simple code to solve complex problems. For more information about F#, visit the F# homepage at MSDN. See also Getting Started with F# for lots more information, including links to blogs, videos, books, "hello world"s, downloads, and more.

learn more… | top users | synonyms (1)

157
votes
8answers
5k views

How can a time function exist in functional programming?

I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
157
votes
15answers
12k views

Getting started with F#

What's a good way to get into F# programming? What's a good "Hello world" example and what simple examples can show me why I want to use it over C#. Also what tools do I need? I have WindowsXP, ...
113
votes
11answers
6k views

In what areas might the use of F# be more appropriate than C#?

Over the last few years F# has evolved into one of Microsoft's fully supported languages employing many ideas incubated in OCaml, ML and Haskell. Over the last several years C# has extended it's ...
107
votes
10answers
9k views

Is functional GUI programming possible?

I've recently caught the FP bug (trying to learn Haskell), and I've been really impressed with what I've seen so far (first-class functions, lazy evaluation, and all the other goodies). I'm no expert ...
76
votes
9answers
10k views

Why should a .net developer learn F#?

What is the new language F# all about? Where is that going to be useful? And what is Microsoft's future plan (release road map) regarding this language?
63
votes
8answers
10k views

What are the primary differences between Haskell and F#?

I've searched on the Internet for comparisons between F# and Haskell but haven't found anything really definitive. What are the primary differences and why would I want to choose one over the other?
54
votes
9answers
20k views

What are the benefits of using C# vs F# or F# vs c#?

I work for a tech company that does more prototyping than product shipment. I just got asked what's the difference between C# and F#, why did MS create F# and what scenarios would it be better than ...
54
votes
6answers
7k views

How can I use functional programming in the real world?

Functional languages are good because they avoid bugs by eliminating state, but also because they can be easily parallelized automatically for you, without you having to worry about the thread count. ...
41
votes
31answers
4k views

Handy F# snippets

There are already two questions about F#/functional snippets. However what I'm looking for here are useful snippets, little 'helper' functions that are reusable. Or obscure but nifty patterns that ...
40
votes
9answers
2k views

In what areas does F# make “absolute no sense in using”?

Don Syme in his SPLASH talk says that F# is NOT intended to be a replacement for C# even though it has the general capabilities. He goes on to say that there are areas where F# makes no sense in ...
39
votes
5answers
1k views

Why is F#'s type inference so fickle?

The F# compiler appears to perform type inference in a (fairly) strict top-to-bottom, left-to-right fashion. This means you must do things like put all definitions before their use, order of file ...
39
votes
17answers
2k views

Function which returns itself

As a purely academic exercise (read "because I have no life"), I'm trying to write a function f which accepts another function g, executes g for its side effect, and returns itself. So I have this: ...
38
votes
6answers
7k views

Is a program F# any more efficient (execution-wise) than C#?

I'm guessing that it is not because they both boil down to the same IL
37
votes
19answers
2k views

Does anyone have any recommendations for starting out in functional programming?

I'm looking for some eBooks that will assist in my learning of functional programming. I haven't yet decided which language I will go with, but I've noticed a fair amount of bias towards LISP, ...
36
votes
13answers
4k views

F# open source projects

I'm looking for some open source F# projects to learn from. Something like this question but for F#, i.e. not snippets but full projects that are good representatives of F# features (i.e. pattern ...
36
votes
10answers
9k views

F# and OCaml [closed]

I hear that F# is derived from OCaml. How true is this statement? That is to say, are the resources available for learning OCaml useful to someone who wants to learn F#? What are the major differences ...
36
votes
5answers
11k views

Favorite advanced F# tutorial

I am looking into F# and have read a few "Hello World!" intros that shows off the very basic syntax of the language. I am now ready to move on and try more advanced features, ie. functional ...
36
votes
12answers
5k views

Where can F# actually save time and money?

There is a lot of hype around the latest functional programming language F# from Microsoft. In real life - where (in what kind of scenarios) can F# most likely save time and money?
35
votes
2answers
3k views

Is F# really faster than Erlang at spawning and killing processes?

Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the ...
34
votes
8answers
12k views

How to get F# working with Mono?

I can't seem to find a compiler/plugin for mono. Does one exist?
33
votes
9answers
2k views

What are practical uses of applicative style?

I am a Scala programmer, learning Haskell now. It's easy to find practical use cases and real world examples for OO concepts, such as decorators, strategy pattern etc. Books and interwebs are filled ...
33
votes
5answers
8k views

F# and Scala comparison

Could someone describe what are the differences between those two languages? Other that they target different VM of course ;)
32
votes
8answers
7k views

Resources for 2d game physics

I'm looking for some good references for learning how to model 2d physics in games. I am not looking for a library to do it for me - I want to think and learn, not blindly use someone else's work. ...
30
votes
1answer
687 views

Why is this F# code so slow?

A Levenshtein implementation in C# and F#. The C# version is 10 times faster for two strings of about 1500 chars. C#: 69 ms, F# 867 ms. Why? As far as I can tell, they do the exact same thing? Doesn't ...
30
votes
13answers
4k views

Any good F# tutorial/book/blog/site online?

Any recommendations?
29
votes
10answers
4k views

F# performance in scientific computing

I am curious as to how F# performance compares to C++ performance? I asked a similar question with regards to Java, and the impression I got was that Java is not suitable for heavy numbercrunching. ...
29
votes
6answers
3k views

F# development and unit testing?

I just got started with F#, which is my first functional language. I have been working quasi-exclusively with C#, and enjoy a lot how F# leads me to re-think how I write code. One aspect I find a bit ...
29
votes
7answers
2k views

How do you design a functional program?

From day 1 of my programming career, I started with object-oriented programming. However, I'm interested in learning other paradigms (something which I've said here on SO a number of times is a good ...
29
votes
10answers
4k views

Anyone Actually Using F# in Production?

Is anyone actually using F# in a production environment? If so, what are you using it for and why did you decided to use F#? Do you recommend a die-hard C# developer to learn F# or do you think it's ...
28
votes
7answers
2k views

Elegant Snippets of F#

I'm currently learning F# quite intensively. I really love it as a language, it just sort of 'feels' right and seems to allow you to produce some succint elegant code. I'm interested in finding some ...
27
votes
11answers
4k views

F# - What are you using it for?

Ok so a good few months back i started hearing about F# and all the goodness it has, i bought Don Syme's book and started reading. At first i was really excited at how elegant it seemed to make ...
25
votes
9answers
1k views

Functional equivalent of decorator pattern?

What is the functional programming equivalent of the decorator design pattern? For example, how would you write this particular example in a functional style?
25
votes
9answers
7k views

Why should I use F#?

I write client-server based business applications using .Net and C#. Given this, how would F# enable me to write better code? "Better" in any sense, e.g. faster coding, faster execution, better ...
24
votes
3answers
1k views

OOP in a purely FP context?

Are there any advantages to using object oriented programming in a functional programming context? I have been using F# for some time now, and I noticed that the more my functions are stateless, the ...
24
votes
7answers
2k views

If Java people go to Scala, C# go to F#, where do Ruby people go for functional nirvana?

I know a lot of Java people have started looking at Scala since it runs on the JVM, and a lot of people in the Microsoft world are looking at F#, but what does Ruby have as a natural functional ...
24
votes
4answers
1k views

How do I define y-combinator without “let rec”?

In almost all examples, a y-combinator in ML-type languages is written like this: let rec y f x = f (y f) x let factorial = y (fun f -> function 0 -> 1 | n -> n * f(n - 1)) This works as ...
24
votes
8answers
9k views

Should I learn Haskell or F# if I already know OCaml? [closed]

I am wondering if I should continue to learn OCaml or switch to F# or Haskell. Here are the criteria I am most interested in: Longevity Which language will last longer? I don't want to learn ...
23
votes
5answers
1k views

Line of business applications: Will F# make my life easy?

I develop mainly line of business applications.No scientific operations. No complex calculations. Just tie User Interface to database. The only reason I use threading is to do some work in background ...
23
votes
9answers
2k views

What does -> mean in F#?

I've been trying to get into F# on and off for a while but I keep getting put off. Why? Because no matter which 'beginners' resource I try to look at I see very simple examples that start using the ...
22
votes
3answers
606 views

Resources for working with Machine Learning in F#

I have learned a Machine Learning course using Matlab as a prototyping tool. Since I got addicted to F#, I would like to continue my Machine Learning study in F#. I may want use F# for both ...
22
votes
7answers
3k views

Scala versus F# question: how do they unify OO and FP paradigms?

What are the key differences between the approaches taken by Scala and F# to unify OO and FP paradigms? EDIT What are the relative merits and demerits of each approach? If, in spite of the support ...
22
votes
6answers
981 views

In Functional Programming, is it considered a bad practice to have incomplete pattern matchings

Is it generally considered a bad practice to use non-exhaustive pattern machings in functional languages like Haskell or F#, which means that the cases specified don't cover all possible input cases? ...
22
votes
7answers
2k views

Why are functions in Ocaml/F# not recursive by default?

Why is it that functions in F# and Ocaml (and possibly other languages) are not by default recursive? In other words, why did the language designers decide it was a good idea to explicitly make you ...
22
votes
7answers
4k views

Is F# really better than C# for math?

Unmanaged languages notwithstanding, is F# really better than C# for implementing math? And if that's the case, why?
21
votes
2answers
855 views

F# vs OCaml: Stack overflow

I recently found a presentation about F# for Python programmers, and after watching it, decided to implement a solution to the "ant puzzle" on my own. There is an ant which can walk around on a ...
21
votes
1answer
484 views

F# crashes on Mono 2.10

After reading some reports about the inadequacies of the Mono 2.6 garbage collector, I decided to give Mono 2.10 a go. I found that the 2.10 runtime crashes with the following simple F# program: let ...
21
votes
3answers
586 views

What are the recent changes to F#?

I am starting to learn F#. I am well versed programming languages like C# (and using the .NET framework in general), but functional programming is new to me. The way I learn best is by taking a book ...
21
votes
2answers
8k views

F# and Visual Studio 2010 Express Edition?

Is there any way to work with F# on Visual Studio 2010 Expression Edition. I am having Visual Studio 2010 Express Edition Beta 2.
21
votes
7answers
2k views

Haskell composition (.) vs F#'s pipe forward operator (|>)

In F#, use of the the pipe-forward operator (|>) is pretty common. However, in Haskell I've only ever seen function composition (.) being used. I understand that they are related, but is there a ...
21
votes
8answers
3k views

When does it make sense to use F# over C# or VB.NET?

Does anyone have any practical examples where F# would be a better choice than C# or VB.NET? Please can you demonstrate using source code?

1 2 3 4 5 62