2010-10-10 12 views
22

J'apprends F # avec fsi sur Mac OS X/mono, mais il est difficile de savoir quelle commande quitter et sortir. Quitter, ou^D ne fonctionne pas,^C ne fonctionne pas non plus. Quelle est la commande pour arrêter le fsi?Tutoriel F # interactif shell (fsi)?

En général, où puis-je trouver un tutoriel/guide de l'utilisateur sur fsi?

+0

Si vous avez deux questions, mieux vaut les poser séparément. – Joren

Répondre

35

Utilisez #help;; pour obtenir de l'aide, #quit;; pour quitter.

7

Quand je commence à F # dans OS X/mono Je reçois le texte suivant

~> fsi 

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

For help type #help;; 

En tapant #help je reçois:

> #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 


> 

Ceux-ci devraient fournir vos réponses.