fork download
  1. (maplist
  2. '((L) (println L))
  3. (range 1 4) )
  4. (maplist
  5. '((L) (println L) (rot L))
  6. (range 1 4) )
  7.  
Success #stdin #stdout 0s 10536KB
stdin
Standard input is empty
stdout
(1 2 3 4)
(2 3 4)
(3 4)
(4)
(1 2 3 4)
(1 2 3)
(1 2)
(1)