26 Dec
2015

Learning F# – The Thunderdome Principle for Functions

Category:UncategorizedTag: :

Back in 2008, Jeremy Miller introduced the Thunderdome Principle, a technique he used for building maintainable ASP.NET MVC applications which later led to the FubuMVC open-source project. The basic premise of the Thunderdome Principle is to have all controller methods take in one ViewModel object (or none in some cases), and also return a single […]

Read More
17 Dec
2015

Learning F# – Passing Parameters to Functions

Category:UncategorizedTag: :

One of the first issues I faced when learning F# was finding out how to specify multiple parameters to a function. While this might sound obvious when learning a functional programming language, I had a few confronting moments that forced me to unlearn things before I could make any progress. I wanted to create a […]

Read More