Help for this page

Select Code to Download


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