<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 18, 2016 at 7:57 AM, Alessio Stalla <span dir="ltr"><<a href="mailto:alessiostalla@gmail.com" target="_blank">alessiostalla@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Can you elaborate on that?</div></blockquote><div><br></div><div>Not really yet. I haven't though enough about it at this point, the idea is still too fresh.</div><div>But I will at least mention my main source of inspiration on the subject, coming from my Smalltalk days (of somewhat fading memory): the ENVY/Developer system.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>The stance on packages found in the mentioned Quora post is based on the old misconception about packages being modules, or "software packages" in the Linux distribution sense. They're not. They are really just namespaces, containers of symbols. So it does not make any sense, to me, that they have versions. Software has versions, not names.</div><div><br></div></div></blockquote><div><br></div><div>Well, "packages" seem to me to be the only system structuring device offered by the CL spec. So you have to work from there toward something more appropriate, I'd say. In a somewhat upward compatible manner I'd hope.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div></div><div>I think it *is* already possible, even if no convenient machinery for it exists, to load the same symbols under different packages (i.e. to use different names for different versions of the same concepts).</div><div><br></div><div>(defpackage p ...)</div><div>(load (compile-file "p-1.0.lisp"))</div><div>(rename-package "P" "P-1.0")</div><div><div>(defpackage p ...)</div><div>(load (compile-file "p-1.1.lisp"))</div></div><div><div>(rename-package "P" "P" "P-1.1")</div><div><br></div><div>p-*.lisp start with (in-package :p)<br></div><div><br></div><div>Then you can compile code against p (latest version), p-1.0 and/or p-1.1.</div><div>Of course each p-*.lisp must be "nice" - only define things in package p.</div><div></div></div><div><br></div></div></blockquote><div><br></div><div>This is an interesting line of argument you've got here...</div><div><br></div><div>Thanks,</div></div><br></div></div>