Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems when trying to run FParsec in F# Interactive

I'm trying to run some FParsec code in F# Interactive but with no success. I am able to build and run this tutorial.fs file, but the same isn't happening with FSI, as it didn't recognize FParsec.dll.

I've already tried running the #r "Parsec" command in FSI but it was of no avail.

Anyone has a clue on what might be the problem here?

enter image description here

like image 706
devoured elysium Avatar asked Aug 22 '11 02:08

devoured elysium


1 Answers

FParsec is not GAC installed, therefore you need to put the full path to the dll in the #r directive, not just the name of the assembly. Also, don't forget that "...FParsec is built as two DLLs. The C# bits are compiled into the FParsecCS.dll and the F# bits (which depend on the C# bits) are compiled into FParsec.dll." (section 3.2 of the documentation). e.g.

#r @"C:\FParsecCS.dll"
#r @"C:\FParsec.dll"
like image 126
Stephen Swensen Avatar answered Nov 19 '22 19:11

Stephen Swensen