HypoLambda 0.2.5

dotnet add package HypoLambda --version 0.2.5
NuGet\Install-Package HypoLambda -Version 0.2.5
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="HypoLambda" Version="0.2.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HypoLambda --version 0.2.5
#r "nuget: HypoLambda, 0.2.5"
#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 HypoLambda as a Cake Addin
#addin nuget:?package=HypoLambda&version=0.2.5

// Install HypoLambda as a Cake Tool
#tool nuget:?package=HypoLambda&version=0.2.5

A small functional programming language for .NET.

Its syntax is based on Python but whitespaces are ignored. Everything is an expression.
The language runtime is embeddable, its AST is accesible and it compiles to portable pcode.
There's an REPL you can play with and the project includes lots of unit tests.

Example of factorial:
f = lambda x:
   (x*f(x-1)) if x > 1 else 1;
f(4)
returns 24.0

See details, examples and instructions in the project site.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
0.2.5 1,274 12/6/2015
0.2.3 1,337 11/27/2015
0.2.1 1,415 11/26/2015
0.2.0 1,348 11/26/2015
0.1.0 1,422 11/26/2015

Publish to Github. Build in Mono OSX.