Skip to content
/ blisp Public

Biel LISP - Simple Lisp interpreter in < 50 lines of code

Notifications You must be signed in to change notification settings

gablg1/blisp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

BLISP - Biel LISP

A very simple LISP interpreter built in multiple languages, implemented in < 50 lines of code.

Usage:

eval(parse("""(
    let factorial (lmb x
        (if (== x 1) 1
            (* x (factorial (- x 1)))
        )
    ) (factorial 10)
)""")) == 3628800

About

Biel LISP - Simple Lisp interpreter in < 50 lines of code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published