dotnet core 3 preview 3 supporta F# interattivo come applicazione .NET Core pura:
dotnet fsi --readline
Sì, c'è, ma è nascosto in una directory profonda.
Ho il seguente script nel mio $PATH, con nome fsi
, per trovarlo e avviarlo:
#!/bin/sh
dotnet=/usr/bin/dotnet
fsi=/usr/share/dotnet/sdk/*/FSharp/fsi.exe
if ! [ -f $fsi ] 2>/dev/null; then
echo ERROR Cannot find fsi.exe or more than one is present
exit 2
fi
exec $dotnet $fsi "[email protected]"
Risultato:
$ fsi
Microsoft (R) F# Interactive version 10.2.3 for F# 4.5
Copyright (c) Microsoft Corporation. All Rights Reserved.
For help type #help;;
> 1+1;;
val it : int = 2
>
Con questo, puoi disinstallare Mono e il vecchio fsharp
pacchetto.