-
Notifications
You must be signed in to change notification settings - Fork 152
How to load cl python in clasp
Karsten Poeck edited this page May 10, 2019
·
5 revisions
-
clone clpython from https://github.com/kpoeck/cl-python.git (master) into ~/quicklisp/local-projects/fork-cl-python/
-
(load "~/quicklisp/setup.lisp")
-
(ql:quickload "clpython" :verbose t)
-
test
COMMON-LISP-USER> (clpython:run "2 + 3")
5
COMMON-LISP-USER> (clpython:run "for i in range(4): print i")
0
1
2
3
NIL
- optionally (ASDF/OPERATE:TEST-SYSTEM "clpython") completes now having some tests disabled
End CLPython test
Errors detected in this test: 27 UNEXPECTED: 25
Successes this test:582
Return values of RUN-TESTS: (NIL 582 27 25)