Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LISP Parser C++

Tags:

c++

parsing

lisp

Is there an existing LISP parser written in C++? I just want the parser, not a full interpreter, but an interpreter to go along with it would be a plus.

like image 334
Imagist Avatar asked Sep 01 '09 12:09

Imagist


2 Answers

Lisp is just a tree structure, any tree parser will parse lisp readily... you can try this one which google gave me.

like image 133
dsm Avatar answered Nov 03 '22 01:11

dsm


Bigloo might be useful here.

like image 27
Ken Avatar answered Nov 03 '22 02:11

Ken