约 50 个结果
在新选项卡中打开链接
  1. What's so great about Lisp? - Stack Overflow

    2010年1月10日 · 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 …

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

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

    2017年9月5日 · 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 …

  5. Newest 'lisp' Questions - Stack Overflow

    2025年12月9日 · 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. Difference between `set`, `setq`, and `setf` in Common Lisp?

    2009年5月15日 · 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 …

  7. creating list of ascending numbers in Common Lisp [duplicate]

    2023年4月21日 · I just want to make a simple program in c-lisp; take in a number and return a list of all the numbers from 0 to that number. I'm relatively new to lisp and I'm curious how someone more …

  8. Using Lisp in C# - Stack Overflow

    2015年3月18日 · 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 …

  9. lisp - Return list from a function - Stack Overflow

    2020年10月3日 · I am new to LISP and was wondering how to return a list from a function. I need to write a function that takes a list as an input and outputs a list. If first and last elements are even …

  10. How do I get my brain moving in "lisp mode?" - Stack Overflow

    2009年10月27日 · This makes Lisp a programmable (in itself!) programming language. This makes building a DSL or an interpreter in Lisp is very easy (see also meta-circular evaluation).