
12 Jul
2006
12 Jul
'06
4:08 p.m.
"Guillaume Chereau" wrote:
using boost.lisp // we create the lisp interpreter with integer and math operation support lisp::lisp<lisp::with_int, lisp::with_math> mylisp; // we run the lisp program : (+ 10 20) lisp::result res = mylisp.run(lisp::word("+") >> 10 >> 20);
Intelib library: http://www.intelib.org/ allows to execute List statements directly, w/o interpretation. /Pavel