From: Logan Capaldo Date: 2006-01-25T06:12:58+09:00 Subject: Re: it is possible to unload a class? On Jan 24, 2006, at 4:05 PM, Jules Jacobs wrote: > You could try something with continuations? Go back to the original > state if you want to unload a library. You'll lose other things too, > unfortunately. > > Jules > > -- > Posted via http://www.ruby-forum.com/. > Continuations aren't that magical. They don't go back in time, just space as it were. IOW, if you can't do it with first class functions (possibly using CPS) (or catch/throw or exceptions (although exceptions for flow control is evil)), you probably can't do it with continuations either. Of course certain things may be easier to express with continuations. Continuations are really just glorified gotos.