Skip to main content

A simple REPL for lambda calculus

Project description

A simple REPL (Read-eval-print-loop) for lambda calculus

https://travis-ci.org/CodeGrimoire/ChurchREPL.svg?branch=master

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


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.2.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file churchrepl-0.2.2.tar.gz.

File metadata

  • Download URL: churchrepl-0.2.2.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for churchrepl-0.2.2.tar.gz
Algorithm Hash digest
SHA256 525e93e4b9c8da233f8458b0f9de7c1e2ae56b8680627f4bb5e7374b0d482bcb
MD5 f5658d03209c20425965534b50b44979
BLAKE2b-256 331210636d2b7861a5cc748ce1890f6a8ac0fc957dbb4f62f2ee51877ca8f4d3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page