0.2.0 • Published 8 years ago

@lfjs/parser v0.2.0

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

LFJS Parser

Build Status

A parser for Lisp Flavoured JavaScript

Install

$ npm install @lfjs/parser

Usage

parse('(+ 1 2)');

[{
  "type": "list",
  "value": [
    { "type": "identifier", "value": "_PLUS_" },
    { "type": "integer", "raw": '1', "value": 1 },
    { "type": "integer", "raw": "2", "value": 2 }
  ]
}]

License

Published by tchak under a permissive MIT License, see LICENSE.md.

0.2.0

8 years ago

0.1.0

8 years ago