Does Racket Scheme provide a Smalltalk-like image-based environment?

racket, scheme, smalltalk

Solution

Racket is not image-based, no. It does have a GUI designer, though.

Problem

Could anyone with experience with Racket Scheme tell me whether it provides a Smalltalk-like, image-based environment? By "image-based", I mean that one typically begins with a snapshot of the programming environment, does stuff to it (adding functions, objects, and GUI elements), and then saves everything to a new snapshot at the end. I'm also looking for things like an interface builder that is integrated into the environment, object inspectors, etc. Does Racket offer this kind of thing?

Original source