jd-boyd / Swisp

A simple Scheme (Lisp dialect) interpreter written in Swift.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Swisp

license Build Status Codecov platforms Swift Package Manager compatible

A simple Scheme (Lisp dialect) interpreter written in Swift.

Inspired by (How to Write a (Lisp) Interpreter (in Python)) by Peter Norvig.

Usage

To build and run Swisp:

git clone https://github.com/jakerockland/Swisp.git
cd Swisp
swift build
.build/debug/Swisp

Example of REPL in action:

Swisp> (define r 10)
Swisp> (* pi (* r r))
314.159265358979
Swisp> (if (> (* 11 11) 120) (* 7 6) oops)
42
Swisp> 

To run the tests:

swift test

Contributions

I welcome contributions; however, please add relevant unit tests for any new features or procedures.

License

Copyright (c) 2016 Jake Rockland (http://jakerockland.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A simple Scheme (Lisp dialect) interpreter written in Swift.

License:MIT License


Languages

Language:Swift 100.0%