Searge / sicp

🚀 SICP

Home Page:https://mitpress.mit.edu/sicp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 2)
⇒ 3

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

(begin (display 1) (newline) ’hooray)
-| 1
=> hooray

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

forthebadge forthebadge

About

🚀 SICP

https://mitpress.mit.edu/sicp/

License:MIT License


Languages

Language:Racket 80.8%Language:Scheme 10.3%Language:Python 8.9%