An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

🧃 Spil
======

A simple lisp parser in Haxe.
Currently supported:

- integers
- strings
- symbols
- comments
- lists

Development 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
```