Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    ...
    2b#
    2b*
    2b&
    
  2. or download this
    my @lists = ( [ 1, 2 ], [ qw[ a b ] ], [ qw[ # * & ] ] );
    
    nFor {
        print join '', map $lists[ $_ ][ $_[ $_ ] ], 0 .. $#_;
    } map scalar @$_, @lists;