Help for this page

Select Code to Download


  1. or download this
    my ($first) = /^\s*(\w+)/ or next;
    if (index $first, "hello") {
        ... whatever ...
    }
    
  2. or download this
    my %prefixes = calc_all_unique_prefixes;
    if (/my ($first) = /^\s*(\w+)/) {
    ...
            print "What?\n";
        }
    }