dotnet core 3 preview 3 prend en charge F# interactif en tant qu'application .NET Core pure :
dotnet fsi --readline
Oui, il y en a, mais il est caché dans un répertoire profond.
J'ai le script suivant dans mon $PATH, avec le nom fsi
, pour le trouver et le lancer :
#!/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]"
Résultat :
$ 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
>
Avec cela, vous pouvez désinstaller Mono et l'ancien fsharp
paquet.