weak locatives added by DerGuteMoritz on Wed Oct 26 21:57:07 2011

#;47> (define foo '(9 2 3))
#;48> (define bar (make-weak-locative foo))
#;49> (print (locative->object bar))
(9 2 3)
#;50> (set! foo 'something)
#;51> (gc)
1603247
#;52> (print (locative->object bar))
#f