ghul.runtime 17.0.0

Prefix Reserved
dotnet add package ghul.runtime --version 17.0.0
                    
NuGet\Install-Package ghul.runtime -Version 17.0.0
                    
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="ghul.runtime" Version="17.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ghul.runtime" Version="17.0.0" />
                    
Directory.Packages.props
<PackageReference Include="ghul.runtime" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ghul.runtime --version 17.0.0
                    
#r "nuget: ghul.runtime, 17.0.0"
                    
#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.
#:package ghul.runtime@17.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ghul.runtime&version=17.0.0
                    
Install as a Cake Addin
#tool nuget:?package=ghul.runtime&version=17.0.0
                    
Install as a Cake Tool

ghūl compiler runtime library

CI/CD NuGet version (ghul.runtime) Release Release Date Issues License ghūl

This package provides:

  • internal types required by all ghūl applications
  • support for the ghūl pipe operator and fluent methods on pipes, such as filter, map and reduce
  • slice, which takes part of an array, list or string: xs |> slice(1..4). An array or a list is sliced without copying, so a later change to the source shows through
  • Ghul.Coroutines, cooperative coroutines: asynchronous functions returning COROUTINE[T] or COROUTINE, which one coroutine awaits as it would call a function. pause() gives up the turn, run() resumes parked coroutines one at a time, CHANNEL[T] hands values between them, and MUTEX and SEMAPHORE guard what they share. All of it runs on one thread, on a default SCHEDULER unless one is named
  • MSBuild targets needed to build ghūl projects

Building a library or an executable

The targets follow the standard OutputType property:

  • Library (the .NET SDK's default when the project does not set one) builds a library. It needs no entry() function.
  • Exe or WinExe builds an executable, which needs an entry() function.

Other values are rejected. To choose directly, regardless of OutputType, set GhulLibrary to true or false.

<PropertyGroup>
  <OutputType>Library</OutputType>
</PropertyGroup>

Issues

View open issues or raise a new one.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ghul.runtime:

Package Downloads
ghul.analysis.protocol

client library for the ghūl compiler's analysis-mode JSON protocol

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
17.0.0 39 9/3/2026
16.2.0 62 9/2/2026
16.1.1 91 9/1/2026
16.1.0 44 9/1/2026
16.0.0 50 9/1/2026
15.1.6 127 9/1/2026
15.1.5 229 8/31/2026
15.1.4 362 8/30/2026
15.1.3 215 8/29/2026
15.1.2 182 8/29/2026
15.1.1 196 8/29/2026
15.1.0 76 8/29/2026
15.0.0 534 8/26/2026
14.6.0 143 8/26/2026
14.5.4 137 8/26/2026
14.5.3 77 8/26/2026
14.5.2 75 8/26/2026
14.5.1 78 8/26/2026
14.5.0 225 8/25/2026
14.4.1 269 8/24/2026
Loading failed