Following the guide mentionned here: Using MSTest with F# I managed to successfully run my unit tests.
I\'m still new to F# so hopefully my question isn\'t too dumb. I\'m creating an Excel file. I\'ve done a lot of Excel with C# so that isn\'t a problem. I have a list of parent rows and then a list of
I am running the same F# code with the two versions of fsi.exe which I can find under my FSharp-2.0.0.0 install:
I am pretty new to functional programming and therefore F# and I have serious trouble to come up with the right solution for this problem.
This is my code: module RTX open System open System.Text.RegularExpressions let input = \"Line 1: Num allocs:3 New:2 Delete:1
I want to create a list that is the multiples of a number.For example [2; 4; 6; 8; 10] would be the multiples of 2 between 0 and 10.
The following code type A (b) = new () = if true then A 4. else failwith \"\" gives an error: This is not a valid object construction expression. Explicit object con开发者_如何学Cstructors must e
I am trying something really simple in F# to try and test interaction with the SharePoint 2010 API.I think I am running into a general problem with F#.Is there anyway that an F# script can access the
The simplest approach is just to throw an exception with error information at the first occurrence of an error. Perhaps another approach is to pass a mutable list argument through analysis functions.
I\'m reading Programming F# by Chris Smith right now trying to figure out F# when i come across Lambadas. Here is a lambda from one of the examples