vote up 3 vote down star
1

Is there a good way to write F# scripts that execute stand-alone without compiling?
...As scripts that could be executed via task scheduler on a server? I assume the server would have the core F# libraries, but not Visual Studio installed.

Is there an F# equivalent to CS-Script or NScript, but not a hack (workaround).

flag

68% accept rate

1 Answer

vote up 5 vote down check
fsi --exec

will run all the files on the command line through the interactive console then exit.

link|flag
And microsoft.com/downloads/… will install fine on a server without VS2008 installed? – B. Tyndall Jan 13 at 0:36
Yes, there's also a zip distrib in case you want to install under linux or just don't wan't to use an msi. – Robert Jan 13 at 6:46
yeah, VS2008 optional. – nlucaroni Jan 13 at 15:17
just more info, blogs.msdn.com/chrsmith/archive/… – B. Tyndall Jan 21 at 18:08

Your Answer

Get an OpenID
or

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