UNB/ CS/ David Bremner/ teaching/ cs4613/ lectures/ lecture20/ cons-ex2.rkt
#lang plai/gc2/mutator
(allocator-setup "mark-sweep.rkt" 20)

(define (cons-test)
    (cons 1 2))

(define the-cons (cons-test))