vote up 6 vote down star
3

I'm starting to learn f#, and I really like it: now I wonder if "out there" someone has written any "real world" app in this wonderful language.

Do you know of, or have developed anything of this kind in F#? And in which fields? Thanks!

flag

+1 just the question I was going to ask. there is another dupe question with some different answers here: stackoverflow.com/questions/179332/… – Sung Meister Apr 20 at 2:37

7 Answers

vote up 1 vote down check

When you install F# there's a bunch of samples that come with it. For Windows forms examples look in the subfolder "SimpleForm" or the subfolder "WinForms".

I think Tomas Petricek's "F# web tool kit" is an interesting example of using F# for asp.net development.

(Tomas was responsible for the Phalanger compiler, which compiled php into .net msil)

link|flag
uhm in the last F# distributions (now we have 1.9.6.2) I cannot find any asp.net sample, those mentioned in the tomas Petricek's article... any hint on how I can find them? Thanks, Andrea – ila Sep 11 '08 at 7:13
vote up 9 vote down

In episode 293 of Dot Net Rocks one of the guests is Ralf Herbrich from Microsoft Research. Among other things, he talks about his work on the TrueSkill ranking system in Halo 3, where they used F#.

So check out the podcast episode above to listen to a discussion about the use of F#.

link|flag
vote up 3 vote down

For a real world working F# app, check out the open source project http://codeplex.com/storm

alt text

link|flag
vote up 1 vote down

We have developed F# for Numerics and F# for Visualization in F# (of course!). Both are aimed at scientists and engineers. The former is a suite of easy-to-use numerical methods. The latter is a library for graphing, charting and arbitrary 2D and 3D visualization that supports F#'s interactive sessions as well as embedding in your own applications as ordinary WPF controls.

We intend to write end user applications in F# in the future, which may well include a standalone environment for interactive technical computing based upon our current libraries.

Cheers, Jon Harrop.

link|flag
vote up 1 vote down

I've been using F# to develop a plug-in to AutoCAD for designing programmable microfluidic chips (user site, developer site).

link|flag
vote up 0 vote down

Thanks Erik, I'll hear the podcast. Anyway it looks like there aren't a lot of uses for F# still... maybe we have to wait for MS to ship it in VStudio10?

link|flag
vote up 0 vote down

I've written some screenscraping utility module in F# which I use in an ASP.NET WebHandler. What it does is transform a basic html website into a podcast feed, so I don't have to download audio files manually when the guy who runs the site adds new items to it.

link|flag

Your Answer

Get an OpenID
or

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