Is there a resource on the Internet that I can look at to find the syntax of a specific language of the perl version (5.8.1 vs current_stable) without having to switch to perldoc and switch between versions, then look for the language element that I am looking for in the selected version?
It just looks like a shitty way, and I thought I'd ask the hive to see if it was better.
For example, if I am looking for a "say", I would like to know that it appeared in perl 5.10 +.
Thanks.
edit-- As a side note, the reason I look is often that I have to maintain older versions of perl that I βcan'tβ upgrade, but still need to write code. This becomes a tedious task when some things do not work as expected, starting from 5.12 + to 5.8, and I just hoped to find a better way (and I decided that I could not be the only one in this situation).
edit-- I basically searched all in one help area, ideally accessible over the Internet. Press say and find out that it is available in version 5.10 when a function is turned on, or that some functions have learned how to accept different arguments in version Z, etc. In many languages, if you go to view the main class / lib / module you will find the whole version history for your arguments, methods, functions, etc. As for utilities and modules, perlver looks beautiful, as well.
source share