# New Ticket Created by Dan Jacobson
# Please include the string: [perl #33764]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=33764 >
$ perldoc -f my
...If more than one value is listed, the list must be placed in parentheses.
OK, but add an example of how to also initialize them at the same time.
The user guesses
my ($c,$f)=0;
But if must still do
$c=$f=0;
unless he wants to get yelled at at
print $c, $f;
Which by the way means maybe we should get a warning at
my ($c,$f)=0;
because it doesn't do what we thought.