《ANSI Common Lisp》的原文摘录

  • One of the most important advantages of functional programming is that it allows interactive testing. In purely functional code, you can test each function as you write it. If it returns the values you expect, you can be confident that it is correct. (查看原文)
    [已软注销] 2011-06-24 20:26:24
    —— 引自第23页
  • In Common Lisp, values have types, not variables.You could imagine that every object had a label attached to it, identifying its type. (查看原文)
    羊羽北 2011-11-30 20:13:26
    —— 引自第27页
  • What is Lambda? The lambda in a lambda expression is not an operator. It is just a symbol. In earlier dialects of Lisp it had a purpose: functions were represented internally as lists, and the only way to tell a function from an ordinary list was to check if the first element was the symbol lambda. (查看原文)
    羊羽北 2011-11-30 20:18:58
    —— 引自第26页