Changes between Initial Version and Version 2 of Ticket #1221
- Timestamp:
- 10/13/15 21:00:04 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1221 – Description
initial v2 8 8 (ir-macro-transformer 9 9 (lambda (i r c) 10 `(begin ,@(list-tabulate 1000 (lambda (x) `(define ,(gensym) (quote ,(make-vector 1000))))))))) 10 `(begin 11 ,@(list-tabulate 12 1000 13 (lambda (x) 14 `(define ,(gensym) (quote ,(make-vector 1000))))))))) 11 15 12 16 (generate-literals) 13 17 }}} 18 19 This happens with vectors as well as lists (but not strings, because those are allocated statically with {{{malloc()}}})