Did you mean: javascript lisp interpreter
js-lisp is a lisp interpreter written in 100% JavaScript, and thus usable in any (supported) browser or JavaScript runtime without the need for plugins or add-ons of any kind.
Jun 26, 2024
LIPS Scheme is powerful lisp interpreter written in JavaScript. The aim of the project is to fully support R7RS specification of Scheme Programming Language.
Apr 7, 2022 · A Scheme interpreter accepts a Scheme program's source code, evaluates the program's expressions, and returns the final result.
Little Lisp is an interpreter that supports function invocation, lambdas, lets, ifs, numbers, strings, a few library functions, and lists.
Aug 11, 2019 · An interpreter has two parts. Parsing: Parsing component takes input program as a sequence of characters, verifies it according to the syntactical rules of the ...
A mini Lisp interpreter in JavaScript. Supports lists (obvs), function invocation, lambdas, lets, if statements, numbers, strings and the library functions ...
The choice of instructions and some of the implementations of the composite functions were taken from Roger Rohrbach's Lisp in Awk interpreter. The syntax ...
People also ask
What is Lisp interpreter?
Is there a JavaScript interpreter?
A Lisp reader and simple compiler (both in JavaScript) and then went to write the virtual machine (that's the part that actually runs the compiled code).
This interpreter currently understands a reasonable subset of the Common Lisp dialect. Currently implemented primitives include:
Aug 24, 2021 · In this post, I discuss about building a simple Lisp interpreter, written in JavaScript, supporting basic Clojure syntax.