项目作者: Searge

项目描述 :
🚀 SICP
高级语言: Racket
项目地址: git://github.com/Searge/sicp.git
创建时间: 2018-06-20T19:29:07Z
项目社区:https://github.com/Searge/sicp

开源协议:MIT License

下载


Structure and Interpretation of Computer Programs 🚀


SICP Anime Opening

GitHub last commit
license
GitHub repo size in bytes GitHub language count DrRacket 🚀

Typographical Conventions

In examples and procedure descriptions and all other places where the evaluation of Scheme expression is shown, we use some notation for denoting the output and evaluation results of expressions.
The symbol is used to tell which value is returned by an evaluation:

  1. (+ 1 2)
  2. 3

Some procedures produce some output besides returning a value. This is denoted by the
symbol .

  1. (begin (display 1) (newline) hooray)
  2. -| 1
  3. => hooray

As you can see, this code prints 1 (denoted by ), and returns hooray (denoted by ).

forthebadge forthebadge