[racket] List abbreviations in Beginning Student

From: Barry Brown (barry at cs.sierracollege.edu)
Date: Tue Jun 29 20:47:48 EDT 2010

I noticed that beginning students are able to use list abbreviation constructors. It doesn't return the list in abbreviated form, however.

(list 1 2 3)
returns
(cons 1 (cons 2 (cons 3 empty)))

Is that correct? I thought list abbreviations in all its forms were reserved for the Beginning Student with List Abbreviations.

-B

Posted on the users mailing list.