F # as a scripting language

Is there a good way to write F # scripts that execute autonomously without compilation?
... How are scripts that can be executed through the task scheduler on the server? I assume that the server will have the main F # libraries, but not Visual Studio.

Does F # exist equivalent to CS-Script or NScript , but not hack (workaround).

+4
source share
1 answer
fsi --exec 

will launch all the files on the command line through the interactive console, and then exit.

+6
source

All Articles