https://github.com/ariebovenberg/spil
A simple lisp written in Haxe
https://github.com/ariebovenberg/spil
Last synced: 3 months ago
JSON representation
A simple lisp written in Haxe
- Host: GitHub
- URL: https://github.com/ariebovenberg/spil
- Owner: ariebovenberg
- Created: 2020-12-23T18:15:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-02T09:16:12.000Z (over 4 years ago)
- Last Synced: 2025-01-11T11:48:06.136Z (4 months ago)
- Language: Haxe
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
🧃 Spil
======A simple lisp parser in Haxe.
Currently supported:- integers
- strings
- symbols
- comments
- listsDevelopment guide
-----------------### Requirements
- `haxe`. on MacOS: `brew install haxe`.
The following haxe libraries (`haxelib install `):
- `munit` (2.3.5)
- `hamcrest` (3.0.0)### Running
```bash
haxe -p src --run Spil example.lisp
```### Tests
```bash
haxelib run munit test
```