Write lisp interpreter in java (2 unlimited possibilities of extension)

In the last article, we already have a simple lisp interpreter (JLispInter), which supports:Variable: aBinding: (define a 5)Four operations: + - */Function (lambda (x) (exp))Call (g exp)At that time, we also left some questions:For example, the parser does not support strings, the four operations define in high-order functions cannot be used as ...

Added by skeppens on Tue, 08 Feb 2022 18:10:14 +0200