All Projects → jakerockland → Swisp

jakerockland / Swisp

Licence: MIT license
A simple Scheme (Lisp dialect) interpreter written in Swift.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Swisp

rubylisp
A Lisp dialect of Ruby
Stars: ✭ 20 (-55.56%)
Mutual labels:  lisp-dialect
bebe
My own LISP dialect, crafted with love.
Stars: ✭ 15 (-66.67%)
Mutual labels:  lisp-dialect
basil
Fast and flexible language exploring partial evaluation, context-sensitive parsing, and metaprogramming. Compiles JIT or AOT to native code.
Stars: ✭ 93 (+106.67%)
Mutual labels:  lisp-dialect
ruspea
A Lisp to be used as a Ruby Library (written in Ruby)
Stars: ✭ 20 (-55.56%)
Mutual labels:  lisp-dialect
BuBBLE
A DSL/LISP dialect written in Haskell
Stars: ✭ 20 (-55.56%)
Mutual labels:  lisp-dialect

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

Swisp can be built and run locally using the Swift compiler:

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

To run Swisp with an input file containing your Lisp code:

.build/debug/Swisp -i filename

To run Swisp in interactive REPL mode:

.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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].