10 lines
198 B
Racket
10 lines
198 B
Racket
#lang plai/gc2/mutator
|
|
(allocator-setup "../good-collectors/good-collector.rkt" 58)
|
|
|
|
(define x 3)
|
|
(cons (begin (set! x 2)
|
|
1)
|
|
(begin (set! x 3)
|
|
1))
|
|
(test/value=? x 3)
|