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?

link|improve this question

If you have two questions, best to ask them seperately. – Joren Oct 10 '10 at 19:47
feedback

2 Answers

up vote 12 down vote accepted

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

link|improve this answer
feedback

When I start F# in OS X/mono I get the following

~> fsi

Microsoft (R) F# 2.0 Interactive build 2.0.0.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

For help type #help;;

By typing #help I get:

> #help;;

  F# Interactive directives:

    #r "file.dll";;        Reference (dynamically load) the given DLL
    #I "path";;            Add the given search path for referenced DLLs
    #load "file.fs" ...;;  Load the given file(s) as if compiled and referenced
    #time ["on"|"off""];;  Toggle timing on/off
    #help;;                Display help
    #quit;;                Exit

  F# Interactive command line options:

      See 'fsi --help' for options


> 

These should provide your answers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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