1 unstable release

Uses old Rust 2015

0.1.0 Aug 10, 2018

#85 in #lisp

MIT license

19KB
505 lines

chao

A simple lisp.

Builtins

Form Description Example
lambda Define anonymous functions (lambda (x) (* x x))
set Define variables (set 'foo 42)
if Conditional evaluation (if true ":D" "D:")
+-*/ Artithmetic operators (+ 1 (/ 4 2.0))
= Comparison (= 1 2)

Building

  1. Install rust
  2. git clone https://github.com/lukad/chao.git
  3. cd chao
  4. cargo build --release

Dependencies

~4–13MB
~129K SLoC