An open API service indexing awesome lists of open source software.

https://github.com/lautis/lisp-prolog

Implementation of a toy Lisp using Prolog
https://github.com/lautis/lisp-prolog

Last synced: 2 months ago
JSON representation

Implementation of a toy Lisp using Prolog

Awesome Lists containing this project

README

        

Yet another toy Lisp implementation. Written in Prolog.

Developed on SWI-Prolog.

run("(defun factorial (a)
(if (eq 1 a)
1
(* a (factorial (- a 1)))))
(factorial 5)", R).
R = 120.