About 50 results
Open links in new tab
  1. 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. So what is it …

  2. How can I use Lisp in Autocad 2024 to extract block attributes and save ...

    May 30, 2023 · I am looking to utilise Lisp in Autocad 2024 to extract block attributes and save into Excel file to save time. Autocad 2024 supports Lisp but DATAEXTRACTION. Thank you in advance for …

  3. What is lisp used for today and where do you think it's going?

    Lisp is used in many applications, but mostly not the way CS students learn it. They use Lisp for basic CS concepts. Real Lisp software often looks different. More macros, more object-oriented, more …

  4. scheme - What's the best way to learn LISP? - Stack Overflow

    Ansi Common Lisp by Paul Graham is a good book. I think it might be out of print, so your best bet to get it via Amazon. I got the book for a "Natural Language Processing" class I took my sophomore year in …

  5. When to use ' (or quote) in Lisp? - Stack Overflow

    Sep 5, 2017 · Lisp symbols can double both as their values, and markers where you in other languages would have used strings, such as keys to hash tables. This is where quote comes in. Say you want …

  6. Newest 'lisp' Questions - Stack Overflow

    Dec 9, 2025 · 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).

  7. Difference between `set`, `setq`, and `setf` in Common Lisp?

    May 15, 2009 · If SET and SETQ are to be booted from a Common Lisp successor, they will have to get some replacement. Their use in high-level code is limited, but low-level code (for example, the code …

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

    Jan 14, 2026 · 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. What are the differences between Clojure, Scheme/Racket and …

    Jun 27, 2012 · Common Lisp has gotten extensive libraries in the past five years (thanks mostly to Quicklisp), Scheme has some modern implementations (Racket, Chicken, Chez Scheme, etc.), and …

  10. What's the difference between eq, eql, equal and equalp, in Common …

    Feb 14, 2009 · From Common Lisp: Equality Predicates (eq x y) is true if and only if x and y are the same identical object. The eql predicate is true if its arguments are eq, or if they are numbers of the …