Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1fea32a

Browse files
committed
tmp
1 parent 36e4610 commit 1fea32a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

meta.lisp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,18 @@
217217
(push datum args)))))
218218

219219
(defun compile-word (word)
220+
(print (list :compile word))
220221
(cond
221222
((immediate-word word)
223+
(print :immediate)
222224
(execute (immediate-word word)))
223225
((multiple-value-bind (i p) (parse-integer word :junk-allowed t)
226+
(print :number)
224227
(when (and i (= p (length word)))
225228
(emit-literal i)
226229
t)))
227230
(t
231+
(print :normal)
228232
(emit-word word))))
229233

230234
(defun interpret-word (word)

0 commit comments

Comments
 (0)