Revision 643939666435 () - Diff

Link to this snippet: https://friendpaste.com/1PqCEPdXCaSQmlyzTASKeu
Embed:
1
2
3
4
5
6
7
8
(deftype SeqFly [s]
clojure.lang.ISeq
(first [this] (first (split s)))
(next [this] (SeqFly. (last (split s))))
clojure.lang.Seqable
(seq [this] this)
Object
(toString [this] (str s)))