0.2.0 • Published 10 years ago

liz-language v0.2.0

Weekly downloads
9
License
-
Repository
-
Last release
10 years ago

Liz

Build Status Dependencies Status

A minimal dialect of Lisp/Kernel, with first-class macros.

See the spec.md for the language's specification.

Example

;; You get first-class macros, this means that you can define List:
($define! list { | env . xs | xs })

(list (a b))  ;; => [["a", "b"]]

;; And you can define applicatives by way of wrap
($define! conj (wrap { | as bs | (cons as bs) }))

(conj 1 (list 2 3)) ;; => [1, 2, 3]

Installing / Usage

$ npm install -g liz-language

Licence

WTFPL.