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?
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"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With