Hacker News new | ask | show | jobs
by jfoutz 1039 days ago
I'm happy to give lisp credit for everything cool.

but Common Lisp has all the good stuff you need to manage different generations of objects under changing classes, not the least of which is jumping into the running system and examining the running state. warnings and errors about redefinition, maybe jump under a different package to manage generations. state and functions are separate, thanks to dynamic dispatch.

Ruby, on the other hand, rewrites the class. hope all the data and functions are forwards and backwards compatible! good luck.