blob: a41e146ac90951e9cc494642b0d5f00f80dd8b3d [file] [log] [blame]
(defun main ()
;; Allocate some garbage
(let1 (used "this should NOT be freed")
(list 1 2 3 4)
(list "this" "is" "a" "list")
(gc)
(print (list "Current allocations" "GC runs"))
(print (gc-stats))))
;; Note: This should print that it is freeing both lists, but not the
;; string