-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1.1-presentation.rkt
115 lines (51 loc) · 938 Bytes
/
1.1-presentation.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
;; 1 - Intro
;; 2 - Overview
;; 2.1 - Values
;; 2.2 - Binding
;; 2.3 - Procedures
;; 2.4 - Conditionals/Logic
;; 3 - Tricks/Tips
;; 3.1 - Doing all the exercises
;; 3.2 - Streaks
;; 3.3 - Racket documentation
;; 3.4 - Internet for homework
;; Primitives
453
888
(* 2 2)
(/ 40 2)
;; Naming
(define size 4)
(* size 2)
;; Procedures
;; function times-two(x) {return 2 * x; var t;}
(define (times-two x)
(* 2 x))
(times-two 5)
(define (square x)
(times-two x))
(square 4)
;; brandon bloom
;; Conditionals
(cond (<p1> <e1>
<p2> <e2>
...
<pn> <en>))
(define (abs x)
(cond ((< 4 0) (- 4))
(else 4)))
(abs -4)
(if <predicate> <then> <else>)
(define (abs x)
(if (< x 0)
(- x)
x))
(and <e1> .... <en>)
(or <e1> .... <en>)
(not <e>)
;; helpful tooling
paredit
rainbow parens
scheme/racket repl
;; smart parens with strict
;; drracket