fork download
  1. (format t "~{[~A]~%~}"
  2. (loop for x = (handler-case (read nil nil nil)
  3. (end-of-file nil))
  4. while x
  5. when (stringp x)
  6. collect x))
  7.  
Success #stdin #stdout 0.01s 25292KB
stdin
abc"def"ghi"jk
l"mno"pqr"stu"
stdout
[def]
[jk
l]
[pqr]