- or download this
use strict;
use warnings;
...
say $_ for @{ $sub->code };
say "\n";
}
- or download this
use warnings;
use strict;
...
my $num = shift;
return ++$num;
}
- or download this
spek@scelia ~/scratch $ perl des.pl
display
...
my $num = shift;
return ++$num;
}