(def head-fibo (lazy-cat [0N 1N] (map + head-fibo (rest head-fibo)))) ... In other words, the args you pass to lazy-seq won't be evaluated ...
確定! 回上一頁