Help for this page

Select Code to Download


  1. or download this
    @cols[1 .. $#cols] = map(tr /[1,2]/[0,1]/, @cols)
    
  2. or download this
    map { tr/12/01/ } @cols;
    
  3. or download this
    tr/12/01/ for @cols;