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.
#r "System.Xml.Linq.dll"work? – John Palmer Aug 19 '12 at 21:59