- Install dotnet core.
- Run the command
dotnet fsi
to start F# interactive shell in the folder where the script is located. - You can load the HelloScript.fsx, by running
#load "HelloScript.fsx";;
- Exit the interactive shell by running
#quit;;
dotnet fsi
to start F# interactive shell in the folder where the script is located.#load "HelloScript.fsx";;
#quit;;