I would like to load one or more .fsx files into the F# interactive and have all the functions defined in the .fsx files in scope so that I can directly use the functions in the console.
The #load directive executes the .fsx file specified, but then I am no longer able to use those functions in the .fsx file. Any workaround for this? Thanks.
I suspect that the script you are loading is not in a module which may be causing your problem. Just add
in the first script and then you can do
and your functions will be accessible