(define (hello x)
(println "Hello, " x))
(hello "blisp")
blisp is a simple, Scheme-like LISP programming language and interpreter written in Java. It implements the core features commonly found in LISP dialects, such as atoms, lists, symbols, and lambdas. The language offers a flexible API that supports both interactive REPL (Read-Eval-Print Loop) sessions and script execution.
blisp draws inspiration from Scheme, and it also introduces its own unique design features, including an embeddable scripting API. This makes it a useful tool for building embedded LISP functionality into Java applications. The core features of the language include:
This website provides an overview of blisp's design, core features, and examples of its usage. The primary source of information about blisp is the “blisp - A Simple LISP Interpreter” paper, which can be found on this site.
Useful Links