UNB/ CS/ David Bremner/ teaching/ cs4613/ lectures/ lecture18/ cons-ex.rkt
#lang plai/gc2/mutator
(allocator-setup "null-gc.rkt" 20)

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

(define the-cons (cons-test))