leastfixedpoint

Archived tweet #11481 from the @leastfixedpoint Twitter Archive
@disconcision ;; Racket (define-syntax pipe (syntax-rules () ((_ f) (f)) ((_ g ... f) (f (pipe g ...))))) (let loop ((_ 0)) (pipe read eval print loop))