R – F# on mono in leopard. Seq.cast error

%ffunctional programming

I came across this answered question, but I can't seem to compile the code. I'm getting the following error on Seq.cast:

error FS0039: The value, constructor, namespace or type 'cast' is not defined.

I'm using Mono 2.0.1_1 and F# 1.9.4.19 on leopard. Is there something funky with f# when running under mono?

Best Answer

You need to upgrade to the latest version of F# 1.9.6.2 (also known as the September CTP): http://www.microsoft.com/downloads/details.aspx?FamilyID=61ad6924-93ad-48dc-8c67-60f7e7803d3c&displaylang=en

Cheers, Rob

Related Topic