I need all in one lisp link

I am a python / c / C ++ programmer, I use emacs, and I read hackers and artists, and I read SICP, and I start reading practical general lisp, but the problem is that I need a bibliographic link in the python documentation (also with how to communicate with the C library, so I can really use lisp in real life. any links? (current focus on shared lisp)

and after I can actually use lisp, how can I learn from others and dive into the lisp community?

maybe the full lisp link contains everything, but I did not find it.

+4
source share
2 answers

General Lisp Short description gives you a good overview of the main language. It can be printed on small booklets.

For things like communicating with C, etc., you need to use library guides (say, CFFI or a specific FFI CL implementation) or implementation.

What Lisp implementation are you using?

+3
source

Are you looking for Common Lisp HyperSpec?

It covers all of ANSI Common Lisp, but it wonโ€™t tell you โ€œhow to talk to the C library,โ€ as it depends on the implementation.

+8
source

Source: https://habr.com/ru/post/1338606/


All Articles