Hello,
Is it possible to rename a Perl module while retaining backwards compatibility? In essence, I am trying to rename Old::MyModule to New::MyModule but need to ensure that scripts that use Old::MyModule continue to work. I have thought of using symlinks but that won't work on Windows (and isn't too elegant). Perhaps someone can provide a tip using Exporter/AutoLoader where Old::MyModule transparently calls New::MyModule?
Thank you for your assistance - Rajib