소스 검색

1.3 higher-order procedures

jordyn 4 년 전
부모
커밋
6b9695cacc
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      1/3/jord/notes.org

+ 2 - 0
1/3/jord/notes.org

@@ -3,6 +3,8 @@ procedures are abstractions that describe compound operations
 : (define (cube x) (* x x x))
 is not about any number in particular, but how to cube any number
 
+it describes 'how to'
+
 one thing we should demand from a language is the ability to build
 abstractions by assigning names to common patterns.