If I compile the following module into a dll
namespace MyNs
module SomeModule =
do printfn "module loading"
let x = 23
then reference the dll in FSI and execute the command open MyNs.SomeModule "module loading" does not print immediately. It only prints when I access x which causes all the top level let and do bindings to execute (normal behavior I know in the .NET world). Is there any way, perhaps via an attribute on the module, I can indicate that module should load immediately upon opening in FSI?
module SomeModule = MyNS.SomeModuleinstead ofopen MyNS.SomeModule? I wonder if that would be any different. FWIW, this works as you expect using 'Send To Interactive' from VS. – Daniel May 6 '11 at 18:47module SomeModule = MyNS.SomeModuledoesn't do it – Stephen Swensen May 7 '11 at 2:48