About 18,800,000 results
Open links in new tab
  1. build - Lisp Executable - Stack Overflow

    Most Common Lisp implementations also provide a "save-world" mechanism that makes it possible to save a snapshot of the current lisp image, in a form which can later be restarted. A …

  2. Newest 'lisp' Questions - Stack Overflow

    So in Lisp/Scheme, there are these 'symbols', which are basically, if I understand correctly, and correct me if I'm wrong, references to variables (not their values).

  3. Lisp - Splitting Input into Separate Strings - Stack Overflow

    Lisp - Splitting Input into Separate Strings Asked 12 years, 8 months ago Modified 2 years, 1 month ago Viewed 28k times

  4. Explanation of CAR, CDR, CADAR, etc - Stack Overflow

    Jul 29, 2016 · You can infer the meaning of these functions by parsing their name: between the first letter ('c') and the last ('r'), a 'a' means "the car of" and a 'd' means "the cdr of". So: cadr is …

  5. artificial intelligence - Why is Lisp used for AI? - Stack Overflow

    Apr 9, 2012 · Common Lisp was never intended to be the AI language, it was created to be used in the industry. For research, Scheme is usually used. And never, ever judge a language by its …

  6. Why should I learn Lisp? [closed] - Stack Overflow

    Jan 17, 2017 · I really feel that I should learn Lisp and there are plenty of good resources out there to help me do it. I'm not put off by the complicated syntax, but where in "traditional …

  7. What's so great about Lisp? - Stack Overflow

    Jan 10, 2010 · I don't know enough Lisp to say whether it's good or bad. It seems like everyone who has used Lisp loves it, yet the most popular languages these days are descended from C. …

  8. Newest 'common-lisp' Questions - Stack Overflow

    Nov 25, 2025 · The Common Lisp standard includes bit arrays and logical operations on them, such as bit-ior, bit-and,... What the standard does not seem to offer is logical shifting of bit arrays.

  9. lisp - Scheme: Cond "not equal" - Stack Overflow

    lisp scheme conditional-statements edited Mar 28, 2013 at 16:45 sds 60.5k 31 178 304

  10. Common Lisp's equivalent of \r inside the format function?

    First, in Common Lisp most characters, including return/newline, can be inserted directly into the string. The only character requiring escaping is the string delimiter.