This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
lamb/README.md

106 lines
3.0 KiB
Markdown
Raw Normal View History

2022-10-21 15:10:36 -07:00
# Lamb: A Lambda Calculus Engine
2022-10-21 15:07:38 -07:00
2022-11-11 18:19:38 -08:00
If you're reading this on PyPi, go [here](https://git.betalupi.com/Mark/lamb).
2022-10-28 20:45:39 -07:00
![Lamb screenshot](./misc/screenshot.png)
2022-10-21 15:07:38 -07:00
2022-11-11 18:19:38 -08:00
2022-10-28 20:45:39 -07:00
## Installation
2022-10-21 15:07:38 -07:00
2022-11-11 18:19:38 -08:00
### Method 1: PyPi [here](https://pypi.org/project/lamb-engine)
1. `pip install lamb-engine`
2. `lamb`
2022-10-28 20:45:39 -07:00
### Method 2: Git
1. Clone this repository.
2. Make and enter a [virtual environment](https://docs.python.org/3/library/venv.html).
3. ``cd`` into this directory
4. Run ``pip install .``
2022-11-11 18:19:38 -08:00
5. Run ``lamb``
2022-10-28 20:45:39 -07:00
-------------------------------------------------
## Usage
2022-11-07 19:58:11 -08:00
2022-10-28 20:45:39 -07:00
Type lambda expressions into the prompt, and Lamb will evaluate them. \
Use your `\` (backslash) key to type a `λ`. \
To define macros, use `=`. For example,
```
2022-11-01 21:33:01 -07:00
==> T = λab.a
==> F = λab.a
==> NOT = λa.a F T
2022-10-28 20:45:39 -07:00
```
Note that there are spaces in `λa.a F T`. With no spaces, `aFT` will be parsed as one variable. \
Lambda functions can only take single-letter, lowercase arguments. `λA.A` is not valid syntax. \
2022-11-07 19:58:11 -08:00
Free variables will be shown with a `'`, like `a'`.
2022-10-28 20:45:39 -07:00
2022-11-07 19:58:11 -08:00
Macros are case-sensitive. If you define a macro `MAC` and accidentally write `mac` in the prompt, `mac` will become a free variable.
2022-10-28 20:45:39 -07:00
Numbers will automatically be converted to Church numerals. For example, the following line will reduce to `T`.
```
2022-11-01 21:33:01 -07:00
==> 3 NOT F
2022-10-28 20:45:39 -07:00
```
2022-11-07 19:58:11 -08:00
If an expression takes too long to evaluate, you may interrupt reduction with `Ctrl-C`. \
Exit the prompt with `Ctrl-C` or `Ctrl-D`.
2022-11-11 18:19:38 -08:00
There are many useful macros in [macros.lamb](./macros.lamb). Download the file, then load them with the `:load` command:
2022-11-07 19:58:11 -08:00
```
==> :load macros.lamb
```
2022-11-11 18:31:37 -08:00
You can also pass files to lamb directly to have them loaded at startup:
```
lamb file1 file2
```
Use your up/down arrows to recall history.
2022-11-11 17:04:05 -08:00
2022-11-07 19:58:11 -08:00
Have fun!
2022-10-28 20:45:39 -07:00
-------------------------------------------------
## Commands
2022-11-07 19:58:11 -08:00
Lamb understands many commands. Prefix them with a `:` in the prompt.
2022-10-28 20:45:39 -07:00
2022-11-11 18:31:37 -08:00
`:help` Print a help message
2022-10-28 20:45:39 -07:00
`:clear` Clear the screen
`:rlimit [int | None]` Set maximum reduction limit. `:rlimit none` sets no limit.
2022-11-11 18:31:37 -08:00
`:macros` List macros.
2022-10-28 20:45:39 -07:00
`:mdel [macro]` Delete a macro
2022-11-11 18:31:37 -08:00
`:delmac` Delete all macros
2022-11-11 17:04:05 -08:00
`:step [yes | no]` Enable or disable step-by-step reduction. Toggle if no argument is given. When reducing by steps, the prompt tells you what kind of reduction was done last:
- `M`: Macro expansion
- `C`: Church expansion
- `H`: History expansion
- `F`: Function application
2022-11-11 15:45:22 -08:00
`:expand [yes | no]` Enable or disable full expansion. Toggle if no argument is given. If full expansion is enabled, ALL macros will be expanded when printing output.
2022-11-07 19:58:11 -08:00
`:save [filename]` \
`:load [filename]` \
Save or load macros from a file.
The lines in a file look exactly the same as regular entries in the prompt, but can only contain macro definitions. See [macros.lamb](./macros.lamb) for an example.
2022-10-28 20:45:39 -07:00
-------------------------------------------------
## Todo:
2022-11-11 17:07:45 -08:00
- Prevent macro-chaining recursion
2022-11-09 21:47:55 -08:00
- Cleanup warnings
2022-11-09 21:54:10 -08:00
- Truncate long expressions in warnings
2022-10-29 10:25:06 -07:00
- Loop detection
2022-11-11 18:19:38 -08:00
- α-equivalence check
2022-11-07 20:18:33 -08:00
- Unchurch command: make church numerals human-readable
- Better Syntax highlighting
2022-11-09 21:44:58 -08:00
- Complete file names and commands
2022-11-01 20:48:43 -07:00
- Tests