When launching a .fsx with fsi.exe, does the code is compiled interactively in debug or release mode?
Because I did fsi.exe –debug test.fsx and it still prints “release”.
test.fsx:
...
#if DEBUG
do printf "debug"
#else
do printf "release"
#endif
...
Did I miss something? Thanks!
I don’t think that
--debugimplies--define DEBUG, just that e.g. debugging symbols and such will be there.