https://github.com/amake/petit_lisp
A simple Lisp implementation for Dart
https://github.com/amake/petit_lisp
Last synced: 8 months ago
JSON representation
A simple Lisp implementation for Dart
- Host: GitHub
- URL: https://github.com/amake/petit_lisp
- Owner: amake
- License: mit
- Created: 2023-11-04T02:39:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T08:42:46.000Z (over 2 years ago)
- Last Synced: 2025-02-03T02:41:35.390Z (over 1 year ago)
- Language: Dart
- Homepage: https://pub.dev/packages/petit_lisp
- Size: 340 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Petit Lisp
==========
This project is a simple grammar and evaluator for LISP. The code is reasonably
complete to run and evaluate complex programs. Binaries for a Read–Eval–Print
Loop (REPL) are provided for the console and the web browser.
```bash
dart run bin/lisp/lisp.dart
```
It is a fork of the [PetitParser Lisp
example](https://github.com/petitparser/dart-petitparser-examples#lisp).
## Web
To run the web example execute the following commands from the command line and
navigate to http://localhost:8080/:
```bash
dart pub global activate webdev
webdev serve --release
```