(require "lib/scanner.arc") (def lines-from-scanner (s) (drain (when s (tostring ; doesn't handle Mac text files though... (while (aand (car s) (if (isnt it #\newline) (write it))) (zap cdr s)))))) (def lines-from-file (f) (w/infile s f (lines-from-scanner (scanner-input s))))
(zap cdr s)
-----
arc> (require "lib/scanner.arc") nil arc> (= s (scanner-string "asdf")) #3(tagged scanner (#<procedure> . #<procedure>)) arc> (car s) #\a arc> (zap cdr s) #3(tagged scanner (#<procedure> . #<procedure>)) arc> (car s) #\s
I'll work on this some more this weekend, and hopefully have something cogent to say.