The Racket REPL does this:

> (cons 1 empty)
'(1)
> (quote a)
'a


Is there an easy way to change it so that it does this?

> (cons 1 empty)
(quote (1))
> (quote a)
(quote a)

Thanks for guidance!

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-dev/4f93eb48-8b56-4608-8673-50017111ef31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to