Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 4 down vote accepted

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

share|improve this answer
If Racket had something like SBCL's save-lisp-and-die, that would be a "yes" answer (even if that was not normal Racket usage). – Frank Shearar Jun 12 '12 at 14:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.