Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stardustdl/lamcal

An online calculator for lambda calculus (λx. y).
https://github.com/stardustdl/lamcal

lambda-calculus naive-ui nodejs vite vue

Last synced: about 2 months ago
JSON representation

An online calculator for lambda calculus (λx. y).

Awesome Lists containing this project

README

        

[![Lamcal](https://socialify.git.ci/StardustDL/lamcal/image?description=1&font=Bitter&forks=1&issues=1&language=1&owner=1&pattern=Plus&pulls=1&stargazers=1&theme=Light)](https://github.com/StardustDL/lamcal)

![](https://github.com/StardustDL/lamcal/workflows/CI/badge.svg) ![](https://img.shields.io/github/license/StardustDL/lamcal.svg)

An online calculator for lambda calculus (λx. y).

Visit [here](http://www.stardustdl.top/lamcal/).

## Examples

```
(λu. λv. v)((λx. x x)(λx. x x))
-> λv. v

(λx. x x) ((λy. y) (λz. z))
-> λz. z

(λe. λf. e) ((λa. λb. a) x y) ((λc. λd. c) u v)
-> x

(λx. x (λy. x y y) x)(λz. λw. z)
-> λy.((λz.λw.z) y y)
-> λy.y
```