A simple REPL for lambda calculus
Project description
A simple REPL (Read-eval-print-loop) for lambda calculus
Use:
when calling churchrepl and new REPL will be opened.
churchrepl [-f --file file [file ...]] [-v --verbose]
Flags:
(optional) Read definitions and expressions from a file before loading the normal REPL.
-f|--file file [file ...]
(optional) print debugging and verbose output.
-v|--verbose
Church repl file structure:
The EBNF grammar is as follows*:
(* Lambda Program *) program = {line}; line = (define | function); define = "@" alias ":" function; function = lambda | application; lambda = ("λ" | "\") variable "." expr; application = '(' expr expr ')'; expr = (lambda | application | variable | alias ) ; variable = /[a-z]/; alias = /[_A-Z][_A-Z0-9]*/;
A simple example program:
@ID: λx.x @APPLY: λf.λx.(f x) @TRUE: λx.λy.x @FALSE: λx.λy.y @ZERO: λf.λx.x @SUCC: λn.λf.λx.(f ((n f) x)) @ONE: (SUCC ZERO) @TWO: (SUCC ONE) @THREE: (SUCC TWO) @FOUR: (SUCC THREE) (SUCC ZERO) (SUCC ONE) (SUCC TWO) (SUCC THREE) (SUCC FOUR)
Note: The λ (lambda, unicode u03bb) is equivalent to a backslash as far as this program is concerned. When using the repl it may be easier to use a backslash.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
churchrepl-0.2.1.tar.gz
(6.7 kB
view details)
File details
Details for the file churchrepl-0.2.1.tar.gz
.
File metadata
- Download URL: churchrepl-0.2.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe7f75383b40b4636bce5aae867f80df1462d2d38b7f554a37f7521ec199720e |
|
MD5 | 118930d88d1c5226c524e3278bc9cef7 |
|
BLAKE2b-256 | b24ea7d150db98621795cbfa3a1451da5745bbf2eb2fb51270aceee937565fd2 |