Lisp is a family of general purpose programming languages, influenced by the lambda calculus, and with the ability to manipulate source code as a data structure.
When I started learning CL from Practical Common Lisp, as is preached in the book, I started off with Allegro …
lisp common-lispHow can i execute a shell (bash) command within a Common Lisp program and assign the output to a variable?
bash shell lisp exec common-lispI know that Lisp and Scheme programmers usually say that eval should be avoided unless strictly necessary. I’ve seen …
clojure scheme lisp common-lisp evalI want to know, how to create and write text file in lisp. I just want to write simple line …
file file-io lisp common-lisp lispworksI'm programming on Ubuntu using GCL. From the documentation on Common Lisp from various sources, I understand that let creates …
lisp common-lispI am trying to learn lisp and I have some difficulties with prime numbers. I need a function is-prime and …
lisp common-lisp primes primality-testSomeone is trying to sell Lisp to me, as a super powerful language that can do everything ever, and then …
lisp homoiconicityI already have a few languages under my belt (in a rough order of expertise): Python, C, C++, PHP, Javascript, …
programming-languages lisp ocamlWhen I do (/ 7 2), what should I do to get the result 3? If I do (/ 7 2.0), I get 3.5, which is as expected.
lisp casting clisp