This seems a bit wrong - besides the fact that you should not enter the first bit (as explained by svick), you probably also need to specify the full path to the F # compiler. If you are using F #, which comes with Visual Studio 2010, you need to:
"C:\Program Files (x86)\Microsoft F#\v4.0\Fsc.exe" dolphins.fs
If you are using a standalone installation of F #, you need to find the F # compiler somewhere else (perhaps in "Program Files (x86) \ FSharp-2.0.0.0", but I'm not quite sure), Also, I'm not sure what the dir command should do. To execute the compiled application (after compiling it), you can simply enter:
doplhins.exe
Tomas petricek
source share