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. 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 …

  3. 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 …

  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. 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).

  6. 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 …

  7. 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.

  8. 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 …

  9. What exactly is a symbol in lisp/scheme? - Stack Overflow

    Oct 25, 2017 · Lisp/Scheme/Racket makes that really easy, because the language already has a built-in correspondence between identifiers (part of the language's syntax) and symbols (values in the …

  10. Using Lisp in C# - Stack Overflow

    Mar 18, 2015 · Clojure is a Lisp-1 that is compiled on-the-fly to Java bytecode, leading to very good runtime performance. You can use Clojure, and cross-compile it to a .NET assembly using IKVM 's …