I'm teaching myself perl, and in the example programs, this program is offered.
#!/usr/bin/perl
use strict;
use warnings;
($a, $b) = (10, 20);
print "$a $b";
This program works fine. On the other hand, when I try this:
#!/usr/bin/perl
use strict;
use warnings;
($a, $b, $c) = (10, 20, 30)...