Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 666 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 666 Bytes

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