DEV Community

齊藤敦志
齊藤敦志

Posted on

4

Similar thing, not same

Common Lisp has do syntax. And Scheme too.

They have same form, but different semantic.

;; Common Lisp
(do ((i 0 (+ i 1))
     (j '() (cons (lambda()i) j)))
    ((= i 3)
     (mapcar (lambda(x)(funcall x)) j)))
;; → (3 3 3)
Enter fullscreen mode Exit fullscreen mode
;; Scheme
(do ((i 0 (+ i 1))
     (j '() (cons (lambda()i) j)))
    ((= i 3)
     (map (lambda(x)(x)) j)))
;; → (2 1 0)
Enter fullscreen mode Exit fullscreen mode

Scheme's do make a new location every time for each loop. Common Lisp is not so.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

Retry later