Skip to content

Instantly share code, notes, and snippets.

@aharisu
aharisu / gist:2653418
Created May 10, 2012 14:30 — forked from valvallow/gist:2653396
cutで済むならcutを使う派です
(use gauche.generator)
(use gauche.lazy)
(define-syntax chain
(syntax-rules ()
((_ ls proc)(proc ls))
((_ ls proc x ...)
(begin (chain ls proc)
(chain ls x ...)))))