Are deprecated special variables (like $# and $*) lost forever or would it be possible the reuse them in a future Perl version?
Are deprecated special variables (like $# and $* ) lost forever or would it
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no reason why they couldn’t be reused if an appropriate
use 5.16or some such is present, but that would be terribly unlikely. Firstly because it’s just asking for trouble (it will confuse the hell out of people), secondly because special variables are a nasty thing anyway and introducing a new one is rarely a good idea. You can probably consider them lost forever.