F 互动

F#Interactive 是一个 REPL 环境,允许你一次执行一行 F#代码。

如果已使用 F#安装 Visual Studio,则可以通过键入 C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0\Fsi.exe 在控制台中运行 F#Interactive。在 Linux 或 OS X 上,命令是 fsharpi,它应该在/usr/bin/usr/local/bin 中,具体取决于你如何安装 F# - 无论哪种方式,命令都应该在你的 PATH 上,这样你就可以输入 fsharpi 了。

F#交互使用示例:

> let i = 1 // fsi prompt, declare i
- let j = 2 // declare j
- i+j // compose expression
- ;; // execute commands

val i : int = 1 // fsi output started, this gives the value of i
val j : int = 2 // the value of j
val it : int = 3 // computed expression

> #quit;; //quit fsi

使用 #help;; 寻求帮助

请注意使用 ;; 告诉 REPL 执行任何以前键入的命令。