A lambda calculus engine
This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Go to file
Mark 6e46f485c1
Added live reduction counter
2022-10-28 18:58:25 -07:00
.vscode Cleaned up parser 2022-10-22 12:59:42 -07:00
lamb Added live reduction counter 2022-10-28 18:58:25 -07:00
misc Image size 2022-10-21 15:09:09 -07:00
.editorconfig Added metafiles 2022-10-20 11:01:50 -07:00
.gitignore Cleanup & build files 2022-10-21 21:01:06 -07:00
LICENSE Cleanup & build files 2022-10-21 21:01:06 -07:00
README.md Added variable binding 2022-10-23 11:24:27 -07:00
build_bin.py Cleanup & build files 2022-10-21 21:01:06 -07:00
pyproject.toml Cleanup & build files 2022-10-21 21:01:06 -07:00
setup.py Cleanup & build files 2022-10-21 21:01:06 -07:00

README.md

Lamb: A Lambda Calculus Engine

Todo (pre-release):

  • \alpha-equivalence check
  • Prettyprint functions (rename bound variables)
  • Write a nice README
  • Handle or avoid recursion errors
  • Fix colors
  • Print macro content if only a macro is typed

Todo:

  • live syntax check
  • Command and macro autocomplete
  • step-by-step reduction
  • Maybe a better icon?
  • Syntax highlighting: parenthesis, bound variables, macros, etc
  • Pin header to top of screen
  • PyPi package
  • Smart alignment in all printouts
  • Full-reduce option
  • Set reduction limit command
  • Runtime limit

Mention in Docs

  • lambda functions only work with single-letter arguments
  • church numerals
  • how to install