Google News
logo
F# - Interview Questions
What is Interactive options in F#?
This article describes the command-line options supported by F# Interactive, fsi.exe. F# Interactive accepts many of the same command-line options as the F# compiler, but also accepts some additional options.
 
Use F# Interactive for scripting : F# Interactive, dotnet fsi, can be launched interactively, or it can be launched from the command line to run a script.

The command-line syntax is :
dotnet fsi [options] [ script-file [arguments] ]
The file extension for F# script files is .fsx.
Advertisement