Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using mono in Ubuntu precise and have installed F# following the instructions found here. I have also installed fsharp mode for emacs and so am able to test and compile simple F# programs (both on emacs F# mode REPL and also generate executables which I run under mono).

However, the statement:

open System.Xml.Linq

fails in both the emacs F# mode REPL and when invoking fsharpc from the bash shell with the same error:

error FS0039: The namespace 'Linq' is not defined

I found a similar post in SO for C#, and although the advise to use "-r: System.Xml.Linq" does works for the compilation from the shell:

fsharpc -r:System.Xml.Linq.dll parseemails.fs 

... I still can't figure out how to make the Linq namespace available to emacs F# mode REPL so I can use it with C-c C-e evaluations.

share|improve this question
2  
Does using #r "System.Xml.Linq.dll" work? – John Palmer Aug 19 '12 at 21:59

1 Answer

up vote 3 down vote accepted

As mentioned by John in a comment, if you want to reference an assembly in the F# interactive (the REPL running in emacs mode), you can do that using:

#r "System.Xml.Linq.dll"

When compiling code, this command is not valid and you have to add the command line argument -r:System.Xml.Linq.dll. If you want to combine both (run interactively and compile the same code), you can use conditional compilation:

#if INTERACTIVE
#r "System.Xml.Linq.dll"
#endif

The symbol INTERACTIVE is defined automatically in the REPL mode, so if you select and run these three lines, it should reference the assembly (but it will not break your code when compiling).

share|improve this answer
worked like a charm. – Marcus Junius Brutus Aug 20 '12 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.