Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 305 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 305 Bytes

lisp

Lisp is a research language.

It features:

  • Minimal language constructs and Unicode support.
  • Simple API: Tokenizer, Parser, Printer, and Visitor.
  • Bring your own libraries.

Syntax

id          => \p{Letter}+
number      => 0 | [1-9]\d*
cons        => '(' (id | number | cons)* ')'