I don't know how to display images in the terminal.
Here is a .rkt test script:
#lang racket
(require 2htdp/image)
(circle 10 "solid" "red")
Then, I do this in the terminal:
$ racket
Welcome to Racket v6.8.
> (enter! "test.rkt")
(object:image% ...)
"test.rkt">
So I'm getting (object:image% ...)
when I should be getting an image of a circle.
How can I get images to display in the terminal?