F# interactive shell (fsi) tutorial

%ff#-interactive

I'm learning F# with fsi on Mac OS X/mono, but it's hard to know what command to quit and out to shell.

quit, or ^D doesn't work, ^C also doesn't work. What's the command to to stop the fsi?

In general, where can I find some tutorial/user's guide about fsi?

Best Answer

Use #help;; for help, #quit;; to quit.

Related Topic