Help for this page

Select Code to Download


  1. or download this
    my %filter_map = ( ... );
    
    ...
    }
    
    say $filter;
    
  2. or download this
    my %map = ( ... );
    $map{$_} = $_ for 0..9;
    ...
    }
    
    say $numeric;
    
  3. or download this
    my %map = ( ... );
    $map{$_} = $_ for 0..9;
    ...
          split //, uc($word);
    
    say $numeric;