0.8.2 • Published 8 years ago

brandly-lisp v0.8.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

lisp.js

Build Status

with inspiration from @maryrosecook's little lisp interpreter and norvig's lispy

don't use this for anything that matters pls

$ npm install --save brandly-lisp

usage

use it with node

var Lisp = require('brandly-lisp');

var lisp = new Lisp();
console.log(lisp.exec('(+ 2 2)'));
//  => 4

or you can use it in a browser

<script src="dist/lisp.js">
<script>
  var lisp = new Lisp();
  console.log(lisp.exec('(+ 2 2)'));
  //  => 4
</script>

or you can try it out online

or install the cli

development

$ npm install
$ npm test

to build a standalone file for the browser

$ npm run browser
0.8.2

8 years ago

0.8.1

8 years ago

0.8.0

8 years ago

0.7.1

8 years ago

0.7.0

8 years ago

0.6.0

8 years ago

0.5.3

8 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.1

9 years ago