Why does this piece of code work on my fsi but cannot build the project? I am using vs2010 and F # 2.0 ... Any ideas that I am missing something?
let arg = [@"C:\Temp\bin"; @"C:\temp\xml"] arg|> List.map(fun (s) -> printfn "%s" s)
get error message expecting int, how?
Error 1 Type mismatch. Expecting a string list -> int but given a string list -> 'a list The type 'int' does not match the type ''a list' C:\Users\Ebru\Documents\Visual Studio 2010\Projects\WinFind\WinFind\Program.fs
source share