Skip to content

iammerrick/json-lisp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON Lisp

JSON Lisp is a Lisp like language that uses JSON arrays to mimic Lisp S-Expressions. This repository is a reference resource to support my article on the topic.

Check out the JSON Lisp article where we implement this language together.

Examples

Math

["+", 2, 2]; // 4

if

["if", true, ["+", 1, 1] // 2

cond Branching

["cond", [false, 1], [false, 0], [true, 3]]; // 3

Releases

No releases published

Packages

 
 
 

Contributors