liz-language

0.2.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i liz-language

Weekly Downloads

0

Version

0.2.0

License

none

Last publish

Collaborators

  • killdream