Help for this page

Select Code to Download


  1. or download this
    my @filtered = do for $s.comb -> $a, $b {
       [ $a, $b ] if $a ne $b;
    }
    
  2. or download this
    my @filtered = gather for $s.comb -> $a, $b {
       take [ $a, $b ] if $a ne $b;
    }