Each time I load an FSX script file (or any other file for that matter) in FSharp Interactive in Visual Studio 2015, it prints a message:
> #load "D:\Projects\Tests.fsx";;
[Loading D:\Projects\Tests.fsx]
namespace FSI_0055
It doesn't matter whether the FSX is empty, has one or more types or modules in it. The result is always the loading message (clear enough) and then the namespace FSI_00XX
message, where XX is an incremental number. I.e., if I run the above command again (with or without changes to the file) it shows this:
> #load "D:\Projects\Tests.fsx";;
[Loading D:\Projects\Tests.fsx]
namespace FSI_0056
It looks like an error, but clearly it isn't. My guess is, it is an implicit namespace, and the current namespace will be set to the latest. Does it also mean that I can refer to the previous version using the previous namespace?
Or, if not that, what does it stand for?
Note: if I use "Send to interactive" of a code snippet, this message does not appear.