0.8.2 • Published 10 years ago

brandly-lisp v0.8.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 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

10 years ago

0.8.1

10 years ago

0.8.0

10 years ago

0.7.1

10 years ago

0.7.0

10 years ago

0.6.0

10 years ago

0.5.3

10 years ago

0.5.0

10 years ago

0.4.0

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.1

11 years ago