Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 612 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 612 Bytes

λ-Calculi Expression Visualizer

This project visualizes λ-calculi expressions as graphs.

Try it here.

/screenshot.png

Usage

Start the project:

deno task start

This will watch the project directory and restart as necessary.

About the λ-calculi parser

The λ-calculi parser in lib/parser.gen.ts was generated using tsPEG (3.2.2) based on the grammar in lib/lambda.grammar.

npm install -g tspeg
tspeg lib/lambda.grammar lib/parser.gen.ts