Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 413 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 413 Bytes

blisp

blisp is a Lisp variant. It is a work in progress.

Installation

Dependencies

Building

Makefile is included. Run make.

Usage

Supports mathematical operators:

blisp> + 2 5
7
blisp> * (+ 3 4) (+ 1 5)
42

Contains built-in functions:

blisp> list 2 3 5
{2 3 5}
blisp> head { 2 3 4 }
{2}
blisp> tail { 2 3 4 }
{3 4}