No title Revision 636363613561 (Sat Feb 11 2012 at 03:37) - Diff Link to this snippet: https://friendpaste.com/4lZlMSpfZN6DCCcxE2canl Embed: manni perldoc borland colorful default murphy trac fruity autumn bw emacs pastie friendly Show line numbers Wrap lines 1234567891011(deftype SeqFly [s] clojure.lang.ISeq (first [this] (first (split s))) (next [this] (SeqFly. (last (split s)))) (more [this] (next this)) (cons [this other] '()) (equiv [this other] true) clojure.lang.Seqable (seq [this] this) Object (toString [this] (str s)))