- or download this
BEGIN {
if( eval "use fakemodule; 1;") {
...
print STDERR "Couldn't load fakemodule.";
}
}
- or download this
first(1,2,3);
sub first {
...
}
# Output is 123
- or download this
use strict;
use warnings;
...
my @list = (1,2,3);
pro(@list);
&pro(@list);
- or download this
$VAR1 = [
[
...
2,
3
];