Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
156 views

How to use $a and $b in Perl subroutine

I would like to use $a and $b variables in my anonimous binary functions like it is done in sort {$a <=> $b} (1, 2, 3) but I can not figure out why code like #!/usr/bin/env perl use strict; ...
1
vote
2answers
72 views

The future of deprecated special variables

Are deprecated special variables (like $# and $*) lost forever or would it be possible the reuse them in a future Perl version?
0
votes
4answers
68 views

How to establish a variable binding that will be active during macroexpansion time?

Let's define a function, the body of which contains the macro, which will be expanded at some unspecified time and will use a global dynamic value of *test* during this process. > (defvar *test* ...