vote up 4 vote down star
3

I'm trying to learn F#, but since I have never done any functional programming or taken a class in it, I find it very hard to generalize the trivial fibonacci or factorial examples into how I would do something usable.

So, what simple but nontrivial non-trivial and usable F# code is there on the net?

flag

68% accept rate

6 Answers

vote up 1 vote down check

I like to use it whenever I have the need for parser support (nowadays you might call it DSL) and whenever I implement symbol-processing algorithms.

The latest productive code I've written in F# concerns filters (used to filter incomming messages to a logging service). I've got a couple of basic filters (that processes the subject, etc.) and higher-order logic filters that combine other filters with AND/OR/NOT operators. The implementation simplifies such "expressions" by converting them to CNF, collecting by type and using special rules (like a < 5 && a < 10 => a < 5, etc.) On top of this I createt a simple parser with fsyacc to give the users of this service a simpler way to create filters.

I guess the hole thing has in F# as many lines of code I would have needed with C# to write just the simplification ;)

link|flag
I like this idea, it can really show the advantages of F# – erikkallen May 5 at 16:52
vote up 3 vote down

Here is a great session from PDC -- he does a fairly non-trivial example application.

link|flag
Thanks for the link, this is a really great and entertaining presentation. Impressive! – divo Apr 29 at 19:29
vote up 2 vote down

See this question, which is considered a duplicate, but rather conveniently also contains links to all the duplicates.

link|flag
vote up 1 vote down

There are a lot of blogs with fun code samples; start at http://fsharp.net and follow the various community blogs and samples to dig up a bit of content.

link|flag
vote up 0 vote down

I know it's not a direct answer, but my advice: port some library from Haskell. You'll get some great, guaranteed functional code to read and write. It'll force you into a different mindset.

Examples: FParsec and FsCheck. Lots of candidates at Hacakge.

Alternatively work through the Real World Haskell book and try to write some of the examples in F#.

Finally, check out codeplex and friends for things tagged with F#.

link|flag
vote up 0 vote down

Validating email addresses with FParsec

link|flag

Your Answer

Get an OpenID
or

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