RosettaCodeData/Task/Variable-size-Get/Common-Lisp/variable-size-get-3.lisp
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

7 lines
148 B
Common Lisp

(let (items)
(gc) ; name varies by implementation
(room)
(dotimes (x 512)
(push (allocate-something-of-interest) items))
(gc)
(room))