- or download this
#!perl -w
use strict;
...
while (@values) {
print "$values[0] => ", get_value( \@values ),"\n";
};
- or download this
#!perl -w
use strict;
...
while (length $values) {
print get_value( \$values ),"\n";
};
- or download this
#!perl -w
use strict;
...
while (length $values) {
print get_value( \$values ),"\n";
};