> (defun ticker (list) (lambda () (pop list))) TICKER > (ticker (list 3 5 7 2)) # > (funcall *) 3 > (funcall **) 5 > (funcall ***) 7