Entries from 2007-06-17 to 1 day

Scheme - もっとコードを読もう

http://www.shido.info/lisp/scheme_cc.html にある queue の実装のコードをデバッグのために追っていた。 コードは↓。 (define (make-queue) (cons '() '())) (define (enqueue! queue obj) (let ((lobj (list obj))) (if (null? (car queue)) (begin (set-…