Fsih 1.0.1

dotnet add package Fsih --version 1.0.1
NuGet\Install-Package Fsih -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fsih" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fsih --version 1.0.1
#r "nuget: Fsih, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fsih as a Cake Addin
#addin nuget:?package=Fsih&version=1.0.1

// Install Fsih as a Cake Tool
#tool nuget:?package=Fsih&version=1.0.1

Fsih

Fsih provides you with the h function, meant to be used in the F# REPL fsi.
It's modeled after the h function in the Elixir iex REPL.

To use it, just start an fsi session with dotnet fsi.
Load the package and open the namespace:

#r "nuget: Fsih";;
open Fsih;;

Apply h to any expression to get its documentation:

h fst;;
Description:
Return the first element of a tuple, fst (a,b) = a.

Parameters:
- tuple: The input tuple.
Returns:
The first value.

Examples:
fst ("first", 2)  //  Evaluates to "first"

Full name: Microsoft.FSharp.Core.Operators.fst
Assembly: FSharp.Core.dll
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 122 1/25/2024
1.0.0 73 1/20/2024
0.2.0 90 1/16/2024
0.1.1 129 12/25/2023
0.1.0 106 12/24/2023

### Fixed

* * Fixed support for operators, for example `h (+)` works now.