Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        sub { "<li class=\"first\">$_[0]</li>\n" },
        sub { "<li class=\"last\">$_[0]</li>\n" },
        qw( alpha beta gamma delta ));
    
  2. or download this
    print for first_last_map(
        { "<li>$_[0]</li>\n" },
        { "<li class=\"first\">$_[0]</li>\n" },
        { "<li class=\"last\">$_[0]</li>\n" },
        qw( alpha beta gamma delta ));