fsi is the REPL (read-eval-print-loop) for the F# programming language.
fsi is the REPL (read-eval-print-loop) for the F# programming language.
fsi can either mean standalone console application or F# Interactive embedded in Visual Studio , that allow you to interactively send F# commands that are subsequently compiled and executed. The interface then replies with the type signature and result values, if any.
After which you are presented with a prompt and can start all over again (previously defined functions and variables are retained until you reset the session).
This is a good way to spike functions or do exploratory development.
MSDN info: http://msdn.microsoft.com/en-us/library/dd233175.aspx