Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 469 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 469 Bytes

C# SKI Combinator Calculus Interpreter

Explanation

SKI Combinator Calculus is a simple Turning complete programming language. It is a simplify version of lambda calculus without variables.

This project is a basic interpreter for this language written in C#.

Running

With Docker installed:

$ docker build -t ski-csharp .; docker run ski-csharp

Or with the Dotnet SDK installed:

$ dotnet run