RosettaCodeData/Task/Variable-size-Get/Common-Lisp/variable-size-get-3.lisp

8 lines
148 B
Common Lisp
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(let (items)
(gc) ; name varies by implementation
(room)
(dotimes (x 512)
(push (allocate-something-of-interest) items))
(gc)
(room))