Skip to content

Searge/sicp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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