This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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) |