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?

link|improve this question

73% accept rate
Have you tried module SomeModule = MyNS.SomeModule instead of open 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:47
@Daniel - just tried it, module SomeModule = MyNS.SomeModule doesn't do it – Stephen Swensen May 7 '11 at 2:48
feedback

2 Answers

up vote 1 down vote accepted

Opening a module never does anything at runtime. It just puts all the symbols in the opened namespace in scope for unqualified access below the open statement.

Section 12.5 of the language spec is what you want to read - this details when the static initialization of a module will run.

Given that, the only time when this initialization is run automatically, as far as I know, is for last module in an exe.

I.e. I don't think there is a direct way to accomplish what you want.

If you have reflective access to the module:

ModuleType.TypeInitializer.Invoke(null, null)

will invoke the static initialization.

link|improve this answer
feedback

You can add the AutoOpen attribute to the module

[<AutoOpen>]
module SomeModule =
  do printfn "module loading"
  let x = 23

However this will only print the module loading message when you reference x.

link|improve this answer
Thanks @Nick R, but I am specifically looking for a way to "auto load" a module upon opening (whether it be opened explicitly or via AutoOpen) without needing to force the loading through referencing x in this example. – Stephen Swensen May 7 '11 at 5:30
feedback

Your Answer

 
or
required, but never shown

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