Help for this page

Select Code to Download


  1. or download this
    foreach $1 (@array)
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    for $1 ('a' .. 'h') {
        print $1 if "A" =~ /(.)/;
    }
    
  3. or download this
    abcdefgh