书栈网 · BookStack 本次搜索耗时 0.007 秒,为您找到 930 个相关结果.
  • Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介)

    Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介) Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介) In this chapter you’ll set up your programming environment and write your ...
  • 1.2 新的技术 (New Techniques)

    1.2 新的技术 (New Techniques) 1.2 新的技术 (New Techniques) 如上一节所提到的, Lisp 赋予你别的语言所没有的工具。不仅仅如此,就 Lisp 带来的新特性来说 ── 自动内存管理 (automatic memory management),显式类型 (manifest typing),闭包 (closur...
  • 第一章:简介

    第一章:简介 第一章:简介 约翰麦卡锡 和他的学生于 1958 年展开 Lisp 的初次实现工作。 Lisp 是继 FORTRAN 之后,仍在使用的最古老的程序语言。 λ 更值得注意的是,它仍走在程序语言技术的最前面。懂 Lisp 的程序员会告诉你,有某种东西使 Lisp 与众不同。 Lisp 与众不同的部分原因是,它被设计成能够自己进化。你能用...
  • Numbers(数值)

    Numbers(数值) Numbers(数值) Math, as Barbie says, is hard. Common Lisp can’t make the math part any easier, but it does tend to get in the way a lot less than other programming lan...
  • 前言

    前言 这本书面向的读者 如何使用这本书 代码 On Lisp 鸣谢 前言 本书的目的是快速及全面的教你 Common Lisp 的有关知识。它实际上包含两本书。前半部分用大量的例子来解释 Common Lisp 里面重要的概念。后半部分是一个最新 Common Lisp 辞典,涵盖了所有 ANSI Common Lisp 的操作符。 ...
  • Experimenting in the REPL

    Experimenting in the REPL Experimenting in the REPL To try the REPL, you need a Lisp expression that can be read, evaluated, and printed. One of the simplest kinds of Lisp expr...
  • Who This Book Is For(本书面向的读者)

    Who This Book Is For(本书面向的读者) Who This Book Is For(本书面向的读者) This book is for you if you’re curious about Common Lisp, regardless of whether you’re already convinced you want to...
  • Files and File I/O(文件和文件 I/O)

    Files and File I/O(文件和文件 I/O) Files and File I/O(文件和文件 I/O) Common Lisp provides a rich library of functionality for dealing with files. In this chapter I’ll focus on a few bas...
  • Where to Go Next

    Where to Go Next Where to Go Next So, that’s it. Welcome to the wonderful world of Lisp. The best thing you can do now—if you haven’t already—is to start writing your own Lisp ...
  • 第三章:列表

    第三章:列表 第三章:列表 列表是 Lisp 的基本数据结构之一。在最早的 Lisp 方言里,列表是唯一的数据结构: “Lisp” 这个名字起初是 “LISt Processor” 的缩写。但 Lisp 已经超越这个缩写很久了。 Common Lisp 是一个有着各式各样数据结构的通用性程序语言。 Lisp 程序开发通常呼应着开发 Lisp 语言自...