forked from orangeduck/BuildYourOwnLisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contents.html
247 lines (209 loc) · 6.05 KB
/
contents.html
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<h1>Contents <small>• Build Your Own Lisp</small></h1>
<div style="margin-top:50px"></div>
<!--
<div style='float:right'>
<div style='background-image:url(/static/img/book0.png); width:348px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
<div style='background-image:url(/static/img/book1.png); width:346px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
<div style='background-image:url(/static/img/book2.png); width:330px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
<div style='background-image:url(/static/img/book3.png); width:342px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
<div style='background-image:url(/static/img/book4.png); width:362px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
<div style='background-image:url(/static/img/book5.png); width:348px; height:512px; margin-bottom: 90px; margin-top:90px;'></div>
</div>
-->
<a href="chapter1_introduction"><h3>Chapter 1 • Introduction</h3></a>
<hr/>
<ul>
<li>About</li>
<li>Who this is for</li>
<li>Why learn C</li>
<li>How to learn C</li>
<li>Why build a Lisp</li>
<li>Your own Lisp</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter2_installation"><h3>Chapter 2 • Installation</h3></a>
<hr/>
<ul>
<li>Setup</li>
<li>Text Editor</li>
<li>Compiler</li>
<li>Hello World</li>
<li>Compilation</li>
<li>Errors</li>
<li>Documentation</li>
</ul>
<div style="margin-top:50px"></div>
<h3><a href="chapter3_basics">Chapter 3 • Basics</a></h3>
<hr/>
<ul>
<li>Overview</li>
<li>Programs</li>
<li>Variables</li>
<li>Function Declarations</li>
<li>Structure Declarations</li>
<li>Pointers</li>
<li>Strings</li>
<li>Conditionals</li>
<li>Loops</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter4_interactive_prompt"><h3>Chapter 4 • An Interactive Prompt</h3></a>
<hr/>
<ul>
<li>Read, Evaluate, Print</li>
<li>An Interactive Prompt</li>
<li>Compilation</li>
<li>Editing input</li>
<li>The C Preprocessor</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter5_languages"><h3>Chapter 5 • Languages</h3></a>
<hr/>
<ul>
<li>What is a Programming Language?</li>
<li>Parser Combinators</li>
<li>Coding Grammars</li>
<li>Natural Grammars</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter6_parsing"><h3>Chapter 6 • Parsing</h3></a>
<hr/>
<ul>
<li>Polish Notation</li>
<li>Regular Expressions</li>
<li>Installing mpc</li>
<li>Polish Notation Grammar</li>
<li>Parsing User Input</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter7_evaluation"><h3>Chapter 7 • Evaluation</h3></a>
<hr/>
<ul>
<li>Trees</li>
<li>Recursion</li>
<li>Evaluation</li>
<li>Printing</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter8_error_handling"><h3>Chapter 8 • Error Handling</h3></a>
<hr/>
<ul>
<li>Crashes</li>
<li>Lisp Value</li>
<li>Enumerations</li>
<li>Lisp Value Functions</li>
<li>Evaluating Errors</li>
<li>Plumbing</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter9_s_expressions"><h3>Chapter 9 • S-Expressions</h3></a>
<hr/>
<ul>
<li>Lists and Lisps</li>
<li>Types of List</li>
<li>Pointers</li>
<li>The Stack & The Heap</li>
<li>Parsing Expressions</li>
<li>Expression Structure</li>
<li>Constructors & Destructors</li>
<li>Reading Expressions</li>
<li>Printing Expressions</li>
<li>Evaluating Expressions</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter10_q_expressions"><h3>Chapter 10 • Q-Expressions</h3></a>
<hr/>
<ul>
<li>Adding Features</li>
<li>Quoted Expressions</li>
<li>Reading Q-Expressions</li>
<li>Builtin Functions</li>
<li>First Attempt</li>
<li>Macros</li>
<li>Builtins Lookup</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter11_variables"><h3>Chapter 11 • Variables</h3></a>
<hr/>
<ul>
<li>Immutability</li>
<li>Function Pointers</li>
<li>Cyclic Types</li>
<li>Function Type</li>
<li>Environment</li>
<li>Variable Evaluation</li>
<li>Builtins</li>
<li>Define Function</li>
<li>Error Reporting</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter12_functions"><h3>Chapter 12 • Functions</h3></a>
<hr/>
<ul>
<li>What is a Function?</li>
<li>Function Type</li>
<li>Lambda Function</li>
<li>Parent Environment</li>
<li>Function Calling</li>
<li>Variable Arguments</li>
<li>Interesting Functions</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter13_conditionals"><h3>Chapter 13 • Conditionals</h3></a>
<hr/>
<ul>
<li>Doing it yourself</li>
<li>Ordering</li>
<li>Equality</li>
<li>If Function</li>
<li>Recursive Functions</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter14_strings"><h3>Chapter 14 • Strings</h3></a>
<hr/>
<ul>
<li>Libraries</li>
<li>String Type</li>
<li>Reading Strings</li>
<li>Comments</li>
<li>Load Function</li>
<li>Command Line Arguments</li>
<li>Print Function</li>
<li>Error Function</li>
<li>Finishing Up</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter15_standard_library"><h3>Chapter 15 • Standard Library</h3></a>
<hr/>
<ul>
<li>Minimalism</li>
<li>Atom</li>
<li>Building Blocks</li>
<li>Logical Operators</li>
<li>Miscellaneous Functions</li>
<li>List Functions</li>
<li>Conditional Functions</li>
<li>Fibonacci</li>
</ul>
<div style="margin-top:50px"></div>
<a href="chapter16_bonus_projects"><h3>Chapter 16 • Bonus Projects</h3></a>
<hr/>
<ul>
<li>Only the Beginning</li>
<li>Native Types</li>
<li>User Defined Types</li>
<li>List Literal</li>
<li>Operating System Interaction</li>
<li>Macros</li>
<li>Variable Hashtable</li>
<li>Pool Allocation</li>
<li>Garbage Collection</li>
<li>Tail Call Optimisation</li>
<li>Lexical Scoping</li>
<li>Static Typing</li>
<li>Conclusion</li>
</ul>
<a href="credits"><h3>Credits</h3></a> <hr/>
<a href="faq"><h3>FAQ</h3></a> <hr/>
<a href="static/source.tar.gz"><h3>Source</h3></a> <hr/>
<a href="https://github.com/orangeduck/BuildYourOwnLisp"><h3>Github</h3></a>