书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 40874 个相关结果.
  • 三、使用Slime模式

    三、使用Slime模式¶ 3.1 用户界面须知¶ 3.1.1 临时缓冲区¶ 3.1.2 inferior-lisp缓冲区¶ 3.1.3 多线程¶ 3.1.4 键绑定¶ 3.2 求值命令¶ 3.3 编译命令¶ 3.4 补全命令¶ 3.5 查找定义(“Meta-Point”命令)¶ 3.6 文档命令¶ 3.7 交叉引用命令¶ 3.7.1 XR...
  • List-Manipulation Functions

    List-Manipulation Functions List-Manipulation Functions With that background out of the way, you’re ready to look at the library of functions Common Lisp provides for manipulat...
  • Strings in Binary Files

    Strings in Binary Files Strings in Binary Files Textual strings are another kind of primitive data type you’ll find in many binary formats. When you read files one byte at a ti...
  • 8. Macros: Defining Your Own

    8. Macros: Defining Your Own Copyright © 2003-2005, Peter Seibel 8. Macros: Defining Your Own Now it’s time to start writing your own macros. The standard macros I covered ...
  • Conditional Execution

    Conditional Execution Conditional Execution Because a do clause can contain arbitrary Lisp forms, you can use any Lisp expressions you want, including control constructs such ...
  • The FOO Language

    The FOO Language The FOO Language So, enough theory. I’ll give you a quick overview of the language implemented by FOO, and then you’ll look at the implementation of the two FO...
  • Finishing Up

    359 2020-12-10 《Build your own Lisp》
    Finishing Up Finishing Up This is the last chapter in which we are going to explicitly work on our C implementation of Lisp. The result of this chapter will be the final state...
  • CDs and Records

    CDs and Records CDs and Records To keep track of CDs that need to be ripped to MP3s and which CDs should be ripped first, each record in the database will contain the title and...
  • Filenames(文件名)

    Filenames(文件名) Filenames(文件名) So far you’ve used strings to represent filenames. However, using strings as filenames ties your code to a particular operating system and file sy...
  • Chapter 3 总结 (Summary)

    Chapter 3 总结 (Summary) Chapter 3 总结 (Summary) 一个 Cons 是一个含两部分的数据结构。列表用链结在一起的 Cons 组成。 判断式 equal 比 eql 来得不严谨。基本上,如果传入参数印出来的值一样时,返回真。 所有 Lisp 对象表现得像指针。你永远不需要显式操作指针。 你可以使用 copy...