Archive for January, 2009

Recursion in F# and the Tail Recursion Police

Monday, January 5th, 2009 Posted in Programming | 2 Comments »

A helpful comment on a post over at HubFS by Brian McNamara really helped me wrap my mind around tail recursion and why it's immensely important to understand in F#. ... Read more..

Assembly Information for F# Console Applications

Sunday, January 4th, 2009 Posted in Programming | No Comments »

Right on the heels of my last post about an AssemblyInfo.fs file for F# Libraries (DLLs), we can do the same thing for F# console applications with a slight modification. ... Read more..

Assembly Information for F# Libraries

Sunday, January 4th, 2009 Posted in Programming | 1 Comment »

It's standard practice for C# applications and assemblies to have metadata attached to the assembly specifying the version number, name, company, author, etc. Usually this information is specified in the ... Read more..