12 | 12 |
color: white;
|
13 | 13 |
background: blue;
|
14 | 14 |
border: 1px solid green;
|
|
15 |
font-family: monospace;
|
15 | 16 |
}
|
16 | 17 |
</style>
|
17 | 18 |
</head>
|
|
30 | 31 |
<button id="start">Start</button>
|
31 | 32 |
<button id="stop">Stop</button>
|
32 | 33 |
<button id="step">Step</button>
|
33 | |
Speed: <input id="speed" type="range" min="0" max="200" value="0" />
|
|
34 |
<button onclick="c.wrapIt();">Wrap it!</button>
|
|
35 |
<input id="speed" type="range" min="0" max="200" value="0" />
|
|
36 |
<span id="status"></span>
|
34 | 37 |
|
35 | 38 |
<div>
|
36 | 39 |
example source:
|
|
49 | 52 |
</span>
|
50 | 53 |
</div>
|
51 | 54 |
|
52 | |
<pre id="display"></pre>
|
|
55 |
<div id="display"></div>
|
53 | 56 |
|
54 | 57 |
<textarea id="program" rows="25" cols="40"
|
55 | 58 |
>(cons (quote a) (cons (quote b) ())</textarea>
|
|
85 | 88 |
>(let*
|
86 | 89 |
((pair (lambda (x) (cons x (cons x ())))))
|
87 | 90 |
(pair (quote (hi there))))</div>
|
|
91 |
|
|
92 |
<div id="pixley-interpreter" style="display: none;"
|
|
93 |
>(lambda (program)
|
|
94 |
(let* ((interpreter (lambda (interpret program env)
|
|
95 |
(let* ((cadr (lambda (alist)
|
|
96 |
(car (cdr alist))))
|
|
97 |
(null? (lambda (expr)
|
|
98 |
(equal? expr (quote ()))))
|
|
99 |
(find (lambda (self elem alist)
|
|
100 |
(cond
|
|
101 |
((null? alist)
|
|
102 |
(quote nothing))
|
|
103 |
(else
|
|
104 |
(let* ((entry (car alist))
|
|
105 |
(key (car entry))
|
|
106 |
(rest (cdr alist)))
|
|
107 |
(cond
|
|
108 |
((equal? elem key)
|
|
109 |
entry)
|
|
110 |
(else
|
|
111 |
(self self elem rest))))))))
|
|
112 |
(interpret-args (lambda (interpret-args args env)
|
|
113 |
(cond
|
|
114 |
((null? args)
|
|
115 |
args)
|
|
116 |
(else
|
|
117 |
(let* ((arg (car args))
|
|
118 |
(rest (cdr args)))
|
|
119 |
(cons (interpret interpret arg env) (interpret-args interpret-args rest env)))))))
|
|
120 |
(expand-args (lambda (expand-args formals argvals)
|
|
121 |
(cond
|
|
122 |
((null? formals)
|
|
123 |
formals)
|
|
124 |
(else
|
|
125 |
(let* ((formal (car formals))
|
|
126 |
(rest-formals (cdr formals))
|
|
127 |
(argval (car argvals))
|
|
128 |
(rest-argvals (cdr argvals)))
|
|
129 |
(cons (cons formal (cons argval (quote ()))) (expand-args expand-args rest-formals rest-argvals)))))))
|
|
130 |
(concat-envs (lambda (concat-envs new-env old-env)
|
|
131 |
(cond
|
|
132 |
((null? new-env)
|
|
133 |
old-env)
|
|
134 |
(else
|
|
135 |
(let* ((entry (car new-env))
|
|
136 |
(rest (cdr new-env)))
|
|
137 |
(cons entry (concat-envs concat-envs rest old-env)))))))
|
|
138 |
(call-lambda (lambda (func args env)
|
|
139 |
(let* ((arg-vals (interpret-args interpret-args args env)))
|
|
140 |
(func arg-vals)))))
|
|
141 |
(cond
|
|
142 |
((null? program)
|
|
143 |
program)
|
|
144 |
((list? program)
|
|
145 |
(let* ((tag (car program))
|
|
146 |
(args (cdr program))
|
|
147 |
(entry (find find tag env)))
|
|
148 |
(cond
|
|
149 |
((list? entry)
|
|
150 |
(call-lambda (cadr entry) args env))
|
|
151 |
((equal? tag (quote lambda))
|
|
152 |
(let* ((formals (car args))
|
|
153 |
(body (cadr args)))
|
|
154 |
(lambda (arg-vals)
|
|
155 |
(let* ((arg-env (expand-args expand-args formals arg-vals))
|
|
156 |
(new-env (concat-envs concat-envs arg-env env)))
|
|
157 |
(interpret interpret body new-env)))))
|
|
158 |
((equal? tag (quote cond))
|
|
159 |
(cond
|
|
160 |
((null? args)
|
|
161 |
args)
|
|
162 |
(else
|
|
163 |
(let* ((branch (car args))
|
|
164 |
(test (car branch))
|
|
165 |
(expr (cadr branch)))
|
|
166 |
(cond
|
|
167 |
((equal? test (quote else))
|
|
168 |
(interpret interpret expr env))
|
|
169 |
((interpret interpret test env)
|
|
170 |
(interpret interpret expr env))
|
|
171 |
(else
|
|
172 |
(let* ((branches (cdr args))
|
|
173 |
(newprog (cons (quote cond) branches)))
|
|
174 |
(interpret interpret newprog env))))))))
|
|
175 |
((equal? tag (quote let*))
|
|
176 |
(let* ((bindings (car args))
|
|
177 |
(body (cadr args)))
|
|
178 |
(cond
|
|
179 |
((null? bindings)
|
|
180 |
(interpret interpret body env))
|
|
181 |
(else
|
|
182 |
(let* ((binding (car bindings))
|
|
183 |
(rest (cdr bindings))
|
|
184 |
(ident (car binding))
|
|
185 |
(expr (cadr binding))
|
|
186 |
(value (interpret interpret expr env))
|
|
187 |
(new-bi (cons ident (cons value (quote ()))))
|
|
188 |
(new-env (cons new-bi env))
|
|
189 |
(newprog (cons (quote let*) (cons rest (cons body (quote ()))))))
|
|
190 |
(interpret interpret newprog new-env))))))
|
|
191 |
((equal? tag (quote list?))
|
|
192 |
(list? (interpret interpret (car args) env)))
|
|
193 |
((equal? tag (quote quote))
|
|
194 |
(car args))
|
|
195 |
((equal? tag (quote car))
|
|
196 |
(car (interpret interpret (car args) env)))
|
|
197 |
((equal? tag (quote cdr))
|
|
198 |
(cdr (interpret interpret (car args) env)))
|
|
199 |
((equal? tag (quote cons))
|
|
200 |
(cons (interpret interpret (car args) env) (interpret interpret (cadr args) env)))
|
|
201 |
((equal? tag (quote equal?))
|
|
202 |
(equal? (interpret interpret (car args) env) (interpret interpret (cadr args) env)))
|
|
203 |
((null? tag)
|
|
204 |
tag)
|
|
205 |
((list? tag)
|
|
206 |
(call-lambda (interpret interpret tag env) args env))
|
|
207 |
(else
|
|
208 |
(call-lambda tag args env)))))
|
|
209 |
(else
|
|
210 |
(let* ((entry (find find program env)))
|
|
211 |
(cond
|
|
212 |
((list? entry)
|
|
213 |
(cadr entry))
|
|
214 |
(else
|
|
215 |
(quote illegal-program-error))))))))))
|
|
216 |
(interpreter interpreter program (quote ()))))</div>
|
88 | 217 |
|
89 | 218 |
</body>
|
90 | 219 |
<script src="../src/pixley.js"></script>
|