1
JSCL是Common Lisp(CL)的實現之一。如何從JSCL方法調用Common Lisp代碼
它涵蓋許多的CL特徵除了CLOS,格式等
它有其REPL其他CL實現。
我想知道如何從JS端調用CL代碼。
我想這樣做:
// set the CL codes as string
var codes = "(defun f1(x) (+ x 1))
(f1 99)";
// call CL codes from JSCL
JSCL.CL.call(codes);
=> 100
我想找到JSCL這樣的方法。