fork download
  1. (defun foo (&optional (bar '()))
  2. (setf bar (cons 1 bar))
  3. (print bar))
  4.  
  5. (foo)
  6. (foo)
  7. (foo)
  8.  
Success #stdin #stdout 0.02s 10584KB
stdin
1
2
10
42
11
stdout
(1) 
(1) 
(1)