Help for this page

Select Code to Download


  1. or download this
    my @repl = (73, 120, 124, 170, ... );
    @arry[@repl] = (15) x @repl;
    
  2. or download this
    for (@repl) {
        $arry[$_] = 15;
    }