Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 923 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 923 Bytes

Structure and Interpreataion of Computer Programs

Index

  1. Building abstraction with procedures
  2. Building abstraction with data
  3. Modularity and objects state
  4. Metalinguistic Abstraction
  5. Computing with register machines

How to code in scheme?

Scheme Syntax

  • define - for defining some expression to a variable and creating functions
  • lambda - so that we can returning functions?
  • let - syntactic sugar, can be done with lambda
  • cond - for condtionals
  • if - can be done using cond
  • cons
  • car
  • cdr