Skip to content

Instantly share code, notes, and snippets.

@plonk
plonk / pipe.rb
Last active August 29, 2015 14:12 — forked from ha2ne2/pipe.rb
パイプっていいます
## PIPE BY PAIP ON MATZ LISP
## 2014-12-23
# (primes 10)
# => [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]
def make_pipe(head, tail)
[head, tail]
end
def head(pipe)